Skip to Main Content

Java SE (Java Platform, Standard Edition)

Reduce desktop application memory

863708Jun 23 2011 — edited Jun 23 2011
I'm developing a windows desktop (standalone) application which runs as an endless loop.
Once the application starts, a database connection is created (java.sql.Connection) and is used all over the application.
The loop does the following operations:
* Call web services
* Execute Sql queries to read data from Database
* Write image (downloaded by one of the web services) to disk. (approximately ~80KB)

My application takes about 50 MB memory.
How can I reduce my application memory usage?
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jul 21 2011
Added on Jun 23 2011
1 comment
567 views