vote up 2 vote down star

Currently I use 'ln' command via Runtime.exec(). It works fine. The only problem is that in order to do this fork, we need twice the heap space of the application. My app is a 64 bit app with heap size around 10Gigs and thus its runs out of swap space. I couldn't find any configuration that could fix this.

I also want not to use JNI for the same. Also I had heard somewhere that this facility will soon be provided in java 7.

flag

0% accept rate
Slow down a little. What are you trying to do, what have you already tried, and what happened when you tried it? – mmyers Apr 23 at 19:02

3 Answers

vote up 1 vote down

Perhaps this site will be of help: http://java.sun.com/docs/books/tutorial/essential/io/links.html

With kind regards,

Jeroen

link|flag
Got all excited about that JavaDoc, until I saw "@since 1.7" – Thilo Nov 12 at 2:05
vote up 0 vote down

You could use Windows instead of UNIX? ;) I believe JDK7 will be using a call similar to CreateProcess instead of fork where available.

A more practical solution would be to create a new child process soon after starting. If you are using a 10g heap, another small Java process probably wont be so bad. Get that process (via use of streams) to exec.

link|flag
vote up 2 vote down

you could try JNA in place of JNI (JNA has some clear advantages over JNI); yes, check the JSR 203

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.