Tagged Questions
8
votes
4answers
5k views
How to import a class from default package
Possible Duplicate: How to access java-classes in the default-package?
I am using Eclipse 3.5 and I have created a project with some package structure along with the default package. I have one ...
5
votes
4answers
2k views
What is native implementation in Java
If we look at the Java Object class then we can find some of the methods like
public native int hashCode(), protected native Object clone(),
so my question is what are these natives and how do these ...
4
votes
8answers
2k views
Multiple threads stuck in native calls (Java)
I have a problem with an application running on Fedora Core 6 with JDK 1.5.0_08.
After some amount of uptime (usually some days) threads begin getting stuck in native methods.
The threads are locked ...
2
votes
1answer
126 views
Is the source code of native methods available?
At first I want to let you know that this question is not related with What is native implementation in Java. I got many useful information from that thread.
I want to know that are the codes of the ...
2
votes
1answer
104 views
Java field descriptor for Object[][]
Whats field descriptor for an Object[][] within a method descriptor? Say there exists a class foo.bar.Class and a method takes a Class[][], according to
...
1
vote
2answers
72 views
Where to place a shared library .so for JNI native calls when deploying on Glassfish JEE application
I have a Glassfish 3.1.1 web application for JEE6 running. one of my classes has a native library dependencie. I'm using JNI to use this native method. Part of that process involves creating a shared ...
1
vote
1answer
100 views
how to get the process output when using jna and CreateProcessW
I'm trying to figure out how to read the standard out/err from the
process I've created with CreateProcessW. I looked at the docs,
googled and searched this list but I didn't find good ...
1
vote
3answers
58 views
Managing a ZIP-based compression file in Java
I know that Java natively supports the ability to navigate through and ope files compressed within a ZIP file, as that is what a JAR file is. How can I utilize this to make and manage a ZIP-based file ...
0
votes
2answers
39 views
UnsatisfiedLinkError java exception when the class with the native method is not in the default package
I am trying to open a URL with the default Windows browser, in Java. Unfortunately, I cannot use the Desktop class utilities since the code has to be compatible with 1.5.
As a solution, I am calling ...
0
votes
1answer
161 views
Adobe Air Native Process with Java
Does Adobe Air Native process only allows to call .exe file only which runs a java class ?
And not accessing a certain method in the java class?
0
votes
2answers
141 views
Native C code calling from Java Swing GUI
I am trying to read and write to the parallel port, I implemented the writing and reading in C, now I want to import that code into a java GUI application.
I managed to include the C .so file into the ...
0
votes
2answers
397 views
Unsatisfied Link Error Help Java JNI Eclipse
Hi I am trying to run a project in eclipse and am getting the runtime error:
Exception in thread "main" java.lang.UnsatisfiedLinkError: mywrapperclass.nativemethod()V
I only get the error code when ...
0
votes
2answers
326 views
How JVM call the native method in host environment
These day I have been reading about Java Native Interface.So by the way I do have doubt.Let say for a instance,If we need to do a I/O operation in Java program, we exercise the Java API for I/O ...
0
votes
1answer
70 views
How to use JNI in a Dynamic web project?
I've written a native method to access port. I am able to run the JNI in a simple Java project. However, when I try to run it in a web project, I'm getting an exception like this:
Exception in ...
0
votes
1answer
164 views
How to call a function written in assembly language code from java?
hi i would like to incorporate assembly language code with java.. guys give me some idea and example programs like hello world because assembly language is new to me..
0
votes
2answers
155 views
Finding a process from Java
In Java or via some Eclipse plugin, is it possible to find a process by name without dropping down to native code? Specifically, I want to determine if a web browser is running and let the user know ...