Java Performance and Memory optimization(Java 記憶體最佳化)

來源:互聯網
上載者:User

 

Java Performance and Memory optimization is one of the challenging task in java programming.In case of big java projects we must consider this.Here I listed few techniques for java performance and memory optimization.

1.Use mutable StringBuffer/StringBuilder classes instead of immutable String objects.

2.In case of I/O operations use buffering when writing to and reading from
files and/or streams.Avoid reader/writers use streams instead of this.

3.Remove references  to the short-lived objects from long-lived objects like Java collections.

3.Create objects before entering the loop and avoid creating new objects for each iteration.

4.Use ArrayLists, HashMap instead of Vector,Hashtable etc wherever possible.

5.Reduce calls to Date, Calendar, etc related classes.

6.Use logging frameworks like Log4J which uses I/O buffers instead of System.out.println.

7.Set the initial capacity of a collection.Empty vector has array size 10.

8.Use tools like JProfiler,JProbe,OptimizeIt to find memory leaks in your java application.

9.Improve Java Application performance using SwingWorker class.

10.Use Thread pooling and database connection pooling techniques wherever possible.

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.