Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » Java Development Tools (JDT) » Cannot not start Java program in eclipse(java.lang.UnsatisfiedLinkError: java.util.zip.Inflater.inflateBytes([BII)I)
icon9.gif  Cannot not start Java program in eclipse [message #648259] Wed, 12 January 2011 07:09 Go to next message
Eric Chow is currently offline Eric ChowFriend
Messages: 11
Registered: July 2009
Junior Member
After I update to somethings (don't know what), it cannot startup Java program at all.

My eclipse version: eclipse-jee-helios-SR1-win32

Furthermore, in the eclipse editor, it always shows
"The type Set is not generic; it cannot be parameterized with arguments <K>"



The following is my code:


Hashtable tmp = new Hashtable();


Iterator<Integer> its = tmp.keySet().iterator();
		while (its.hasNext()) {
			Integer tid = its.next();

			DmsTransaction tx = tmp.get(tid);
			if (tx.getDocument() == null) {
				out.add(tx.getTrackId());
			}
		}



Please see the eclipse screen dump.
https:// docs.google.com/leaf?id=0BwprZzDjueGeNDY4NzdlYzktYjI4NS00N2E 2LWE5MmItMzdmYzIzZGQ0YmRk&hl=en



Please help, and suggest solution.
Best regards,
Eirc

[Updated on: Thu, 13 January 2011 01:00]

Report message to a moderator

Re: Cannot not start Java program in eclipse [message #648993 is a reply to message #648259] Mon, 17 January 2011 06:43 Go to previous message
Satyam Kandula is currently offline Satyam KandulaFriend
Messages: 444
Registered: July 2009
Senior Member
I cannot reproduce this problem. However, we have seen such problems.
Here, typeSet() is declared to return Set<K> and some how the compiler is taking Set as 1.4, probably because they are 1.4 projects in the workspace. Many such problems were fixed by 3.7M4. Please try to use 3.7M4 and file a bug if you still see the problem.
Previous Topic: selection does not contain main type - Java Spring
Next Topic:Force Refresh of Project Classpath Status
Goto Forum:
  


Current Time: Thu Apr 18 14:39:34 GMT 2024

Powered by FUDForum. Page generated in 0.01625 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top