Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X
Hi,
I need to make a lot of export from Intralink. The files I need to export to disk are all listed into a text file.
I have first recorded a macro that export one file, then I modified this macro to create a loop that read into my text file and
export the items 500 by 500.
This is working well but there is a memory problem: I can see in the task manager that the process javaw.exe is consuming more and
more memory until the whole process crash.
I need to find a way tor release the consumed memory betwwen each iteration of my loop.
I've tried to add the line "IL=null",
I also tried to force a call to the java garbage collector: Runtime r = Runtime.getRuntime(); then r.gc()
But without success.
I noticed that when I start my script step my step, in the "watch" tab I didn't see the instructions I added (IL=null; and r.gc()).
Attached is my current script.
Any suggestions ?