Tagged Questions
For issues relating to setting up or using the Java Development Kit (JDK), version 6.
5
votes
4answers
3k 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(file));
}
Is there ...
2
votes
3answers
3k views
Web Service Client in JBOSS 5.1 with JDK6
This is a continuation of the question here:
http://stackoverflow.com/questions/2435286/jboss-does-app-have-to-be-compiled-under-same-jdk-as-jboss-is-running-under
It's different enough though that ...
1
vote
3answers
69 views
JDK6 libraries - compatibility with JDK7
Is JDK7 backward compatible with JDK 6? Specifically, if I have some jars compiled using JDK6, will I able to use them while developing in JDK7?
0
votes
1answer
74 views
Eclipse: Howto organize JDK or JRE (JDK6 or JDK7) dependent sources?
Maybe I only missed the right keywords / concept how to describe my problem.
Scope:
I'm used to build my project with JDK6 and JDK7 within Eclipse Indigo
For a specific library I have to use two ...
0
votes
2answers
301 views
Weblogic server 32-bit on 64 bit linux box
I have Weblogic server setup 32-bit(wls1033_linux32.bin) and jdk6 64-bit(jdk-6u24-linux-x64.bin).... can i install and run successfully on a 64-bit Linux machine?
Please give me the break up of what ...
0
votes
1answer
54 views
How do I modify an html link attribute when the html is loaded into a jEditPane? JDK6
I understand how to get the attribute with:
public void hyperlinkUpdate(HyperlinkEvent e) {
e.getSourceElement().getAttributes().getAttribute(HTML.Attribute.COLOR);
How do I change that ...