my question is really simple (which doesn't imply that the answer will be as simple.. :D ) why do arrays in C++ include the size as part of the type and Java's
I just started learning JSP and Java servlets and I stumbled upon an issue. I will use a simple example to show this unexpected behavior. I have a .jsp file whi
I created a Dockerfile and i want to conntect my crawler application with my selenium server. I have connected the services via link, but its not possible to re
I am using tree in treepanel and treestore to show hierarchical records on UI for one of my application. When I add some no of records vertical scroll bar is ap
I have an endpoint that returns the json response as below: "abc" : [ { "name" : "XZ", "id" : "1234", "action" : { "attributes" : {
I am trying to run 3 operations in parallel using the CompletableFuture approach. Now these 3 operations return different types so need to retrieve the data sep
Need help on solving below usecase using Java where in the below paragraph A@123@456789@10111213 B@123@456789 C@123@456789@101112131415 D@123@456789 E@123@4567
Some of the data contains value in Arabic format, and when the data is written, reader code/hadoop fs -text command shows ?? instead of Arabic characters. 1) Wr
I have created a Java project in eclipse. Under that I have created a source folder naming "Resources". I want to create an XML file under that Resources folder
I have been using the Android Studio App for about a month now,in order to create a project for a university subject. Unfortunatelly,I came across a problem whi
I wanna make a simple context action (the one that appears when you click Alt+Enter) using a plugin. But I can't figure out the group I need to add and how to i
I have this catch statement: } catch (Exception e) { if (e instanceof AxisFault) { LOGGER.info("AxisFault: " + e); if (((AxisFault) e).getFa
I have a small GUI application that is supposed to access a local MySQL database. It works fine from my IDE and jar file but once I use the jpackaging tool to t
I am trying to create a OSLCLink using this Java API: void createOSLCLink(java.lang.String type, java.lang.String purl) ex: cellElement.createOSLCLink("TRACE",
Eclipse is hanging on me, so I reverted to a gradle build. Gradle classes fails with the error message below. I do have a gradle.properties file in the project
Here are three classes that I wrote: public class Shape { public int x = 0; public void getArea() { System.out.println("I d
we can use SimpleTrigger getTimesTriggered to know how many times this schedule have been triggered, for CronTriggerImpl, is there a similar way to achieve this
I have the following classes: public class Bar { private final Listener mListener; public Bar(Listener listener) { mListener = listener; } } p
I have a multiline string which is delimited by a set of different delimiters, A Z DelimiterB B X DelimiterA (C DelimiterA D) DelimiterB (E DelimiterA F) Delimi
Can I somehow use environment variable to set a properties value, but using computing, something like this: test2: ${TEST+1:2} test: ${TEST:1} As you can see