Java SE version 7 was released in 2011. The new features in comparison to the version 6 include dynamic language support, compressed pointers, small language extensions, elliptic curve cryptography, new network protocols and various system library extensions.
-1
votes
1answer
11 views
dpkg error when installing JDK7 on Ubuntu12.04 [closed]
Error message from terminal:
Download done.
sha256sum mismatch jdk-7u3-linux-i586.tar.gz
Oracle JDK 7 is NOT installed.
dpkg: error processing oracle-java7-installer (--configure):
...
1
vote
2answers
41 views
importing javax package in java without IDE
I'm developing a project in java using vim and I need to use some classes from the javax package. What should I install and configure to be able to import any of them?
I already installed the JDK 7 ...
1
vote
3answers
22 views
Which JDK's release should I use when coding a sonar plugin?
I'm currently coding a plugin for sonar ( custom rules ) . Which JDK and API should I use in order to be compatible for teh majority of sonar instances ? JDK6 ?
Thanks for your response
0
votes
1answer
13 views
Is it possible to use Java 7 with IBM WebSphere Application Server 8.5 Trial
I have installed WAS 8.5 Trial version on Windows 7. I would like to deploy and run Java 7 application. Is it possible to do it?
I can not see "IBM WebSphere SDK for Java Technology Edition 7" in ...
0
votes
0answers
40 views
Java Issue: Memory and CPU usage in MAC OS
I am developing a javaFx application for MAC and Windows, and I found that the application is using extremely large memory and cpu usage in MAC compared to Windows.
When I see my application's ...
0
votes
1answer
7 views
Can't Use LEFT_ALIGNMENT in FlowLayout Constructor
I am currently learning Java Swing for a project. I am using tutorials located here
and have been working on writing the final program in the Layout Managers section, a window that incorporates all ...
0
votes
1answer
24 views
How do i print something on focusOut on TextField in javafx2
I have a TextField and want to perform some action on textfiels focus out
TextField textField = new TextField();
how do i print
System.ou.prinln("Focus Out");
When focus out from textfield.
1
vote
3answers
58 views
Is it possible that in Java 7 (byte) ((char) ByteBuffer.get(X)) != ByteBuffer.get(X)?
The following code (this is a simplified version) used to run fine in jdk1.6 and now the assertion fails under jdk 1.7.
ByteBuffer buffer = ...;
buffer.mark();
char c = (char) buffer.get();
...
2
votes
2answers
43 views
Reordering JList with Drag and Drop
I encountered a problem regarding reordering elements in a JList using Drag and Drop. This following code is a modification of a code where you could drag elements from one JList to another (worked ...
4
votes
4answers
71 views
Sorting LinkedList<File> according to the files last modified time
I know there are many similar questions as mine, but I have not gotten anywhere with those answers ( I feel like I'm missing something...) But anyways:
I have a LinkedList . In my program, the user ...
1
vote
3answers
84 views
Difference between SomeClass and SomeClass<?>
In Java 6 something like MyClass and MyClass<?> were considered equal but in Java 7 they are not.
With Java 7, as an example I stumble to problems with for example Hamcrest matchers that are ...
0
votes
1answer
20 views
Installed JDK 7 but it is not appearing in my JavaVirtualMachines folder
Anyone know what the problem is?
I recently downloaded and installed JDK 7u21, but when I went to add the JRE to eclipse, I did not find it in the JavaVirtualMachines folder, all that was there was ...
0
votes
0answers
20 views
Getting Application errororg.eclipse.swt.SWTException: Invalid thread access while starting java web start application
I am getting Application errororg.eclipse.swt.SWTException: Invalid thread access exception while starting Jave web start. I recently upgraded to Java 1.7 on MAC. It was working fine with java 1.6. ...
1
vote
1answer
20 views
JavaFX exe bundling for x86 windows systems
usually I deploy my Java apps as a bundle which contains the JVM, so there's no need to install a JVM on the system.
Btw: This is no jnlp applet, this is a normal Swing Application.
I did this using ...
1
vote
1answer
26 views
Java: Find out which observer is listening
I am maintaining a software which I have not written. I know only a few parts of it.
Now I have found a method, which fires an event.
public void cleanup(){
if(entity!=null) ...
0
votes
0answers
9 views
Java Application flickers a lot in Java 7
For the past month or so, I've been designing a game on Java 6. But recently, I upgraded to Java 7, and when I compiled and ran my program, it ending up flickering a lot. Whenever there is some sort ...
0
votes
0answers
26 views
Increased Code Cache size for Java 7, ReservedCodeCacheSize needs to be twice as big as Java 6
I'm moving an app from Java 6 to Java 7, after switching to Java 7 the Code Cache usage is significantly higher. On Java 6 my app would use 160mb, it's now using more than 250mb. Is this normal?
My ...
-1
votes
1answer
46 views
Java: How to download a file via imap:// protocol?
How can I download a file given the following URL with Java-SE-7:
imap://georg@imap.acme.com:143/fetch%3EUID%3E/INBOX%3E18678?fileName=testmail.eml
Any help highly appreciated - thank you in ...
0
votes
0answers
27 views
Drag iframe over applet causes flicker of iframe's HTML region
I have an HTML page that contains an applet, and an iframe overlapping some region on that applet. When I re-position/drag overlapping iframe, then paint() is called on background applet that causes ...
0
votes
0answers
32 views
NoSuchAlgorithmException when launching JNLP with Java 7
After upgrading to Java 7, when launching remote jnlp, I see the following exception in the Java console:
java.security.KeyStoreException: WIExplorerMy not found
at ...
0
votes
1answer
56 views
Programing with Eclipse for Java 6 and 7
How to setup Eclipse executions environments and projects to be developed for both JAVA 6 and JAVA 7 JREs?
I'm asking this because not all programs that are developed to run over JAVA 6 will run in ...
-1
votes
0answers
38 views
Calculating the private key (d) in RSA cryptography [closed]
Please, how can I calculate d (the private key) in RSA Cryptography if I know e (the public key) and φ(n)? I know that there is a formula which says: d^−1 = e mod φ(n), and in my opinion this is ...
1
vote
1answer
33 views
Java application is not able to find JDK 1.7 on Mac (Installer created with install4j)
I have created a Java application installer using install4j for Mac OS X. My application uses JDK 1.7.
I have set the JDK version in install4j properly as well.
I have also installed JDK 1.7 on Mac ...
0
votes
1answer
24 views
Unable to install JDK7u21x64 on Windows 8 x64
I have just upgraded to Windows 8 Pro, mostly because my Windows 7 license has reached maximum activations and I have a free copy of 8, and partially so I can ensure my software is 8-compatible.
I ...
-3
votes
1answer
53 views
Windows can't find the 64-bit JDK [closed]
I just installed the 64-bit version of the Java 7 JDK on my computer, but when I load up Command Prompt and call javac it can't find it. What's going on here?
0
votes
1answer
50 views
String comparison - JDK versions produce different results
I've implemented a basic Guava predicate:
containsPatternIgnoreCase(@Nullable final String input) {
checkNotNull(input);
return new Predicate<String>() {
@Override
public ...
0
votes
0answers
26 views
SDK keytool doesn't save
I have windows 8 64 bit and JDK 1.7 installed. I follow this guide to create a self-signed certificate and generating key pairs.
The problem is that: keytool starts and ask me the normal question ...
0
votes
1answer
22 views
How to remove RequestTimeTooSkewed check from Amazon?
I have a Java 7 "agent" program running on several client machines (mostly Windows XP). My "agent" uploads client files to Amazon S3 and often I get this error:
RequestTimeTooSkewed
I know this is ...
0
votes
1answer
32 views
Spring ReloadableResourceBundleMessageSource works with Java 6, fails with Java 7
Our declaration:
<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basenames">
<list>
...
0
votes
0answers
22 views
How can I create dynamic proxy for final Class?
In short:
1. I have some final class that I want to create dynamic proxy for it. How can I do it?
2. Can I convert MethodHandle to Method?
Details
First of all, does exists any API to convert ...
0
votes
1answer
35 views
Joining multiple groups does not work with Netty 3.6.5.Final on SuSe Linux and JDK7
I'm implementing a UDP server using Netty 3.6.5.Final and JDK7 (Nio.2) on Suse Linux and I've run up against the wall. The problem specifically deals with the differences in binding to the wildcard ...
0
votes
0answers
16 views
New error in tomcat5 and java7 U21
I've got a system develop in Java + MySql + Tomcat5. I used to work with Java6, but I updated my machine to win8 with java7 and when I run my servlet I got this error from Tomcat. Does anybody know ...
1
vote
1answer
55 views
Handle incoming sockets in another thread
I'm trying to do something potentially stupid, but I reckon it's a good idea, so bear with me. I tried to implement it, but I hit an awkward issue with sockets closing between threads - so I want some ...
0
votes
2answers
34 views
Mac OS X Java menu bar disappears
I'm running a Java application on Max OS X 10.7.5 and using Java 7. My application has its own menu bar. When I click one menu item it will bring a dialog. Problem is when I invoke the dialog, whole ...
0
votes
0answers
12 views
enable runtime java7 in cloudfoundry
I'm trying to deploy an application framework with java_web Java7, but in start in dea.log read the message "Ignoring request, runtime not enabled for 'Java7' ".
I have read on other forums that you ...
0
votes
0answers
25 views
Can not permit Java encoding names in Tomcat6
On two supposedly identical machines, I am having two different startup results for Tomcat 6.0.24. I am using Java version 1.7_09 on both, yet get wildly different results.
The problem is that I ...
0
votes
1answer
14 views
Exception thrown when building EAR after switching to JDK 7
i'm trying to port my application to JDK 7 from JDK 6 and its giving this exception when i'm trying to build the project in Netbeans IDE.
Error starting Sun's native2ascii:
at ...
1
vote
0answers
102 views
@SafeVarargs and Java 6 interoperability
I have a method with a generic varargs parameter in my API. I want my API to be Java 6 source and binary compatible, but it would be nice if Java 7 API consumers wouldn't suffer from unnecessary ...
0
votes
0answers
13 views
Scanner input to JTextPane
I have been coding in Java for a few months now and I was assigned a simple task to create a to-do list. I have all the code working but when it came down for creating the GUI. I'm trying to put the ...
0
votes
0answers
9 views
Oracle Java equivalent/ solution for setSurviveFocusChange
Is there some solution which works without the Netbeans solution but with the standard Oracle Java classes and methods?
...
0
votes
3answers
32 views
'try with resource' feature for File class
I have one scenario where I am trying to implement with the Java 7 'try with resource' feature.
My finally block contains an object of BufferedWriter and File, which I want to close using 'try with ...
0
votes
0answers
48 views
IBM PKCS11 implementation interoperability with SafeNet
I am using the following code to add pkcs11 security provider to IBM JDK 7:
provider = registerProviderByClassName("com.ibm.crypto.pkcs11impl.provider.IBMPKCS11Impl " + confPath);
...
12
votes
5answers
210 views
ArrayList<> vs ArrayList<Integer>
What is the difference in the two following declarations of an ArrayList?
ArrayList<Integer> nunbers = new ArrayList<Integer>();
vs
ArrayList<Integer> nunbers = new ...
78
votes
2answers
2k views
Differences in auto-unboxing between Java 6 vs Java 7
Hi I have noted a difference in auto unboxing behavior between Java SE 6 and Java SE 7. I'm wondering why that is, because I can't find any documentation of changes in this behavior between these two ...
2
votes
1answer
306 views
Mac OS X, Java 7: createNewFile filename encoding
I'm trying to update a application, running mainly on Mac OSX, from Java6 to Java7.
It occurs that files beeing creating with some special characters in the filename e.g. "föhn.txt" are beeing created ...
4
votes
3answers
1k views
Application is using Java 6 from Apple instead of Java 7 from Oracle on Mac OS X?
I am testing my current application with Mac OS X which has Java 7 from Oracle installed. Instead using Java 7 from Oracle, it's using Java 6 from Apple. The default system output of java -version is ...
4
votes
1answer
357 views
java.lang.UnsupportedOperationException: 'posix:permissions' not supported as initial attribute on Windows
i am using java7 file api i write a class its workig fine on Ubuntu creating Directories perfectly but when i run same code in windows then it is throwing error
Exception in thread "main" ...
3
votes
1answer
7k views
How to set a java compiler in Netbeans
I'm getting into Java7 development and I've added JDK7 into Java Platforms and have selected it in the project properties.
But when I'm compiling, I get messages like:
warning: ...
85
votes
5answers
19k views
Java 7 language features with Android
Just wondering if anyone has tried using new Java 7 language features with Android?
I know that Android reads the bytecode that Java spits out and turns it to dex. So I guess my question is can it ...
4
votes
1answer
2k views
Java SE strong cryptography for Java 7?
The preview release of Java 7 seems to be missing JCE package for unlimited cryptography strength. Has someone stumbled upon such?


