我有以下代码:
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.debug.core.ILaunchConfigurationType;
import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy;
import org.eclipse.debug.core.ILaunchManager;
import org.eclipse.debug.ui.DebugUITools;
public class Main {
public static void main(String... strings) throws IOException {
try {
String path = "E:\\Java\\Projects\\.metadata\\.plugins\\org.eclipse.debug.core\\.launches\\MedicineFrame.launch";
ILaunchManager launchManager = DebugPlugin.getDefault()
.getLaunchManager();
ILaunchConfigurationType type = launchManager
.getLaunchConfigurationType(ILaunchManager.RUN_MODE);
ILaunchConfigurationWorkingCopy workingCopy = type.newInstance(
null, path);
workingCopy.setAttribute("PATH_MY", path);
ILaunchConfiguration configuration = workingCopy.doSave();
DebugUITools.launch(configuration, ILaunchManager.RUN_MODE);
} catch (CoreException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}}
实际上,我只想运行绝对路径定义的文件中指定的启动配置。 我收到一个NPE,因为DebugPlugin.getDefault()返回null。我该怎么办?我发现了很多类似的例子,但没有一个说明NPE,就像没有人在我之前得到它一样。
答案 0 :(得分:1)
快速查看DebugPlugin code后,我发现DebugPlugin#getDefault()
方法是fgDefaultPlugin
字段的简单getter,默认情况下返回此字段值null
。由于您正在调用DebugPlugin#getDefault()
作为main
函数的第一种方法,因此返回null
是合理的,因为先前未调用DebugPlugin#setDefault()
。
您不能从这样的主方法运行Eclipse。你需要编写一个插件,它可以从插件方法中访问。