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.
0
votes
1answer
6 views
When install JDK7 on Ubuntu12.04, aoocured dpkg error
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):
subprocess ...
1
vote
2answers
40 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
11 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
42 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
83 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
19 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
19 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
8 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
31 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
36 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
23 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
48 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
31 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
34 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
54 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
44 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);
...
2
votes
1answer
63 views
+200
Java printing - Enlarged printouts on a small number of printers
On some printers, for whatever reason, the printouts are automatically enlarged with what seems to be default settings when printing through the Java JVM (Java 7). This seems to be with older ...
10
votes
4answers
343 views
Java 7: How to implement drag & drop in Java?
I am currently experimenting with drag&drop using Java 7 Update 21.
My target operating systems are:
Windows 7
Ubuntu 12.04
Mac OSX 10.6 / 10.8
The requirements are:
drag files from the ...
0
votes
0answers
45 views
Java 7's Files.isReadable() and isWritable() take a long time to return
I'm currently making the move to Java 7 and I'm trying to convert all of my classes to use the new java.nio.file package. At one point, I try to check whether a file is readable and writable with what ...
1
vote
2answers
88 views
Java 7 Debug on Windows 8 not working
I am trying to debug an applet on Windows 8 using Java 1.7.0_21.
I have added the bleow to the runtime parameters.
-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005
When I try to ...
2
votes
1answer
89 views
jVisualVM catalog not working after updating to Java 7 update 21
I'm on OSX Mountain Lion. If I run /Library/Java/JavaVirtualMachines/jdk1.7.0_21.jdk/Contents/Home/bin/jvisualvm and attempt to goto to the plugins menu, I get the following error:
Unable to ...
2
votes
2answers
32 views
Manually opening a Java 7 auto-managed resource
So Java 7 has a nifty feature that automatically closes an AutoCloseable class. If I have Bar implement Closeable (which in turn extends AutoCloseable), and have a way to get an open Bar from a Foo, I ...
8
votes
2answers
112 views
Enum.valueOf bug with JDK 7 SE where .values() gets corrupted
This seems like a crazy error, but Enum.valueOf(type, name) seems to be unstable on Oracle JDK 7 SE.
The manifestation is that, on the exact same name String (I've verified this), the call to ...
4
votes
2answers
68 views
Why do I get this compilation warning in Netbeans?
I am working on a Java-EE project involving Glassfish 3.1.2.2 and the client component is running with Java 7 Update 21. The Swing-based client was formerly based on Java 6 Update 38 until we decided ...



