0
votes
6answers
99 views
Deprecate in Java 1.6
In Java 1.5, to deprecate a method you would:
@Deprecated int foo(int bar) {
}
Compiling this in Java 1.6 results in the following:
Syntax error, annotations are only
avai …
2
votes
4answers
116 views
How to tell why a file deletion fails in Java?
File file = new File(path);
if (!file.delete())
{
throw new IOException(
"Failed to delete the file because: " +
getReasonForFileDeletionFailureInPlainEnglish(f …
0
votes
1answer
19 views
MySQL 5.1.32-community and JDK 1.6.0_16
Hello.I have this real weird exception when issuing a basic SELECT, using MySQL 5.1.32-community from JDK 1.6.0_16 code. The conditions to repeat : at any place in my app, if i cha …
1
vote
4answers
137 views
Is there a Java utility which will convert a String path to use the correct File separator char?
I have developed a number of classes which manipulate files in Java. I am working on a Linux box, and have been blissfully typing new File("path/to/some/file");. When it came time …
1
vote
1answer
150 views
Gotchas in JDK 6
Are there any gotchas in JDK 6 which did not exist in earlier versions? I am interested in finding out some surprising changes like the following one in the way Timestamp.valueOf() …
0
votes
1answer
27 views
Java: How to communicate between an annotation processor and another project?
Hello everyone!
I have an own annotation processor (let's call it MyProcessor) and a project (let's call it MyProject) which uses the processor by
passing -processor to javac.
No …
1
vote
2answers
115 views
How to set classpath when I use javax.tools.JavaCompiler compile the source?
I use the class javax.tools.JavaCompiler (jdk6) to compile a source file, but the source file depends on some jar file. How to set the classpath of the javax.tools.JavaCompiler?
1
vote
10answers
390 views
Java source upgrade from 1.4.2 to 1.6.0_10 recommended ? (skipping 1.5)
Our desktop-only product at work has been using JDK 1.4.2 until now (also 1.4.2 JRE shipped with product). I am trying to convince the management to let us upgrade to a newer versi …
0
votes
1answer
65 views
XSLT 2.0 support in JDK 6?
Does JDK 6 support XSLT 2.0 for transformation.
My question is, does it come with an XSLT processor built for XSLT 2.0? or DO I need to go for other libraries like Saxon.
0
votes
1answer
115 views
java 1.6 SystemTray icon does not appear on windows startup
I have a Java 1.6 desktop application, started with javaw from a batch file on Windows XP. There is a .lnk link to this batch file, which is placed to windows Startup folder in ord …
2
votes
1answer
22 views
JSON-Taglib library not working w/ SDK 1.6 ??
Hi guys,
I'm currently working on a project that uses the json-taglib-0.4.1.jar library to do some json communication between front and back end.
That library use to work fine u …
2
votes
4answers
146 views
Java 6: Examples for implementing own scripting language using javax.script?
Hello!
I really can't find good examples for implementing own scripting language using
javax.script ...
I need just something to start.
Documentations
Examples
Tutorials
Videos …
4
votes
4answers
195 views
Do generics in Java avoid all ClassCastExceptins?
Since generics are only checked during
compile time with Java 5, can they
avoid ClassCastExceptions in all
situations?
0
votes
1answer
55 views
How can my thread get stuck in isConnectionReset (PlainSocketImpl)
Someone helping me with a hung Java server studied the thread dump and does not understand the following state :
INFO | jvm 1 | 2009/08/30 18:11:46 | "103468119@qtp-20477065 …
1
vote
2answers
125 views
Why are we getting ClosedByInterruptException from FileChannel.map in Java 1.6?
A customer of ours complains that, sporadically, calls of ours to FileChannel.map fail with a ClosedByInterruptException. The Javadoc does not list this as a legitimate possibility …
