0
votes
javac Exception on Opensolaris 2009.6
Check where rt.jar and tools.jar are
find / -name rt.jar
find / -name tools.jar
Check what value JAVA_HOME has.
Is this a 64-bit install? Then …
1
vote
Ant build file skeleton to turn an eclipse project into a war?
Creating a deployable WAR file from Eclipse Project
…
0
votes
Unresolved Host Exception Android
The error means the URL can't be resolved via DNS. The are a many problems which might cause this. If you sit behind a proxy you should configure it to be used.
HttpHost proxy = new …
3
votes
Invalid or corupt jarfile
First remove the colon after Class-Path: to match
<attribute name="Class-Path" value="lib/**/*.*"/>
Then I suggest reading
…
1
vote
1
vote
Get Active Tab in SWT TabFolder
To you mean the org.eclipse.swt.widgets.TabFolder (CTabFolder)?
If yes add an eventlistener to your TabFolder(CTabFolder object
tabFolder.addSelectionListe …
7
votes
Java exit code meaning
The JVM yields the exit code specified by the program with System.exit(code).
If the JVM crashed it's OS specific what the exit code could mean
…
0
votes
Runtime.getRuntime().exec(), hide the console screen
Add /Q
Runtime.getRuntime().exec( "cmd /c /Q start somebat.bat");
…
1
vote
Accessing font kerning information in Java2D
The only libraries I know of that read the kerning info "somwhat" correctly are iText and …
1
vote
setting classpath for java classes(jar file) in XUL, to access via javascript.
I suggest taking a look at this extension
XQuery USE ME 1.4.7
and the following articles
…
1
vote
What is the easiest way to call a Windows kernel function from Java?
Based on the NativeCall library I did the following …
3
votes
Difference between thread user time and thread cpu time in Java
As the API docs you linked to yourself already point out
getThreadCpuTime
If the implementation distinguishes
between user mode time and system mod …
3
votes
JTable TableModel problem in Java
I suggest reading this How to Use Tables (from the Java Tutorials Using Swing Components) …
0
votes
How to setup JNDI for Sun App Server 8.2
I think creating a jndi.properties file in your project root with the following should be enough.
org.omg.CORBA.ORBInitialHost=localhost
org.omg.CORBA.ORBI …
0
votes
Java client calling WSE 2.0 with DIME attachment
I can't tell you anything for sure from own expierence. And about every 2nd page on the "web" seems to state something different to this question.
So taking all together the following is al …
