我的应用程序存在以下问题,一个基本的IRC工具,它将消息添加到" JTextPane"使用" HTMLEditorKit"作为输出GUI。我注意到,这是随机的,但随着时间的推移,我的应用程序使用了越来越多的内存,在使用大约20分钟后,在拥挤的频道中轻松炸毁已经300MB。我认为这个问题与" JTextPane"有某种关系,因为我可以用这段代码重现这个问题:
package javaapplication26;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JTextPane;
import javax.swing.text.BadLocationException;
import javax.swing.text.DefaultCaret;
import javax.swing.text.Element;
import javax.swing.text.html.HTMLDocument;
import javax.swing.text.html.HTMLEditorKit;
public class NewJFrame extends javax.swing.JFrame {
private long globalCount = 0;
/**
* Creates new form NewJFrame
*/
public NewJFrame() {
initComponents();
this.setSize(500, 200);
this.setLocationRelativeTo(null);
this.jTextPane1.setEditorKit(new HTMLEditorKit());
this.jTextPane1.setContentType("text/html");
this.jTextPane1.setText("<html><body><div id=\"GLOBALDIV\"></div></body></html>");
this.jScrollPane1.setHorizontalScrollBarPolicy(javax.swing.ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
this.jScrollPane1.setVerticalScrollBarPolicy(javax.swing.ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED);
DefaultCaret caret = (DefaultCaret) this.jTextPane1.getCaret();
caret.setUpdatePolicy(DefaultCaret.NEVER_UPDATE);
this.jScrollPane1.setAutoscrolls(false);
this.jTextPane1.setAutoscrolls(false);
Thread fillThread = new Thread() {
@Override
public void run() {
while (!interrupted()) {
try {
removeFromPane(jTextPane1);
insertHTMLToPane(jTextPane1, "<div>"+globalCount+"</div>");
Thread.sleep(1);
} catch (InterruptedException ex) {
Logger.getLogger(NewJFrame.class.getName()).log(Level.SEVERE, null, ex);
break;
}
}
}
};
fillThread.start();
}
private void removeFromPane(JTextPane pane) {
HTMLDocument doc = (HTMLDocument) pane.getDocument();
Element element = doc.getElement("ID" + (this.globalCount - 10));
if (element != null) {
doc.removeElement(element);
}
}
private void insertHTMLToPane(JTextPane pane, String htmlCode) {
this.globalCount++;
HTMLDocument doc = (HTMLDocument) pane.getDocument();
Element element = doc.getElement("GLOBALDIV");
if (element != null) {
try {
doc.insertBeforeEnd(element, "<div id=\"ID"+this.globalCount+"\">" + htmlCode + "</div>");
} catch (BadLocationException | IOException ex) {
Logger.getLogger(NewJFrame.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">
private void initComponents() {
jPanel1 = new javax.swing.JPanel();
jScrollPane1 = new javax.swing.JScrollPane();
jTextPane1 = new javax.swing.JTextPane();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
jPanel1.setLayout(new java.awt.BorderLayout());
jScrollPane1.setViewportView(jTextPane1);
jPanel1.add(jScrollPane1, java.awt.BorderLayout.CENTER);
getContentPane().add(jPanel1, java.awt.BorderLayout.CENTER);
pack();
}// </editor-fold>
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(NewJFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(NewJFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(NewJFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(NewJFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new NewJFrame().setVisible(true);
}
});
}
// Variables declaration - do not modify
private javax.swing.JPanel jPanel1;
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JTextPane jTextPane1;
// End of variables declaration
}
奇怪的是,当它让它在Netbeans中运行时,它不会有100%的机会发生。有时它会保持在70MB左右并且永远不会增长,但随后再次运行,它会随机爆炸,并且在一两分钟之后已经增长到大约200-250MB。
我真的不知道内存中的数据越来越多。似乎通过&#34; doc.removeElement(element)&#34;删除了一行。并不总是标记它后面的对象,以便用下一个GC例程清除。
似乎有某种&#34;撤消机制&#34;保持参考所有插入的行?我不是使用分析器的专家,因为我没有得到一些逻辑,其中char []和其他一些东西成长为数千,即使程序中没有任何反应。
这似乎暗示,无论出于什么原因,JTextPane为每个插件创建一个新的StyleSheet并将其永久保存在HashTable中:
我欢迎任何帮助,以了解发生这种情况的原因,或者如何解决问题。我当然在Windows 10下使用最新的64位JDK。非常感谢
答案 0 :(得分:0)
你的fillThread
真的很可怕,没有意义,为了活动,请不要这样做。
这个帖子有点lets eat resources
,除了java本身足够重,它确实会在系统中造成很大的混乱。
您可以根据事件调用您的业务(删除上一条消息并添加新消息),此处您可以依靠按钮单击或在文本框中输入密钥。
即使你正在使用无状态的东西(比如http),你也可以将睡眠时间增加到更有意义的东西,可能是1秒,甚至更多。
一个可能的问题(我也经历过)可能是过度惰性的GC。我不能100%地说,但由于你的线程正在吃(繁重的工作),GC找不到时间去记忆。
即使在JVM旁边也表明它有线程GC,但它可能无法在内存上工作并且有时会释放数据(如你所经历的那样)并行。
您还可以检查您说明的散列图,并确保所有数据都需要按预期添加和删除。
此外,globalCount
不是线程安全的,您可以使用AtomicInteger
代替。