Eclipse:拾起JAVA_TOOL_OPTIONS:

时间:2018-07-13 09:41:51

标签: java eclipse performance error-handling

我正在用Java编写一个小程序。但是自第一次运行以来,控制台中出现一条错误消息:捡起JAVA_TOOL_OPTIONS:。我读到此错误消息是由于达到Java的RAM限制而发生的。但是程序很小,而且我的程序包只有一个类。也许您可以帮帮我吗?

import javax.swing.*;
public class MainClass {

    public static void main(String[] args) {
        try {
        Runtime rt = Runtime.getRuntime();
        rt.exec("cd Downloads");
        } catch (Exception e) {
            JOptionPane a = new JOptionPane();
            a.setMessage("Ein Fehler ist im AutoThemeSwitcher aufgetreten!");
        }
    }

}

0 个答案:

没有答案