を見つけることができない私は、JavaコードコンパイラJavaコンパイラのAPI - 外部クラスファイル
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import javax.tools.*;
import java.io.*;
import java.util.*;
public class Compiler extends JFrame
{
String loc="D:\\java";
File file=null,
dir=null;
boolean success;
public Compiler()
{
super("Highlight example");
try
{
UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
}
catch (Exception evt) {}
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setLayout(new GridLayout(1,2));
JTextPane textPane = new JTextPane();
JTextArea debug=new JTextArea();
JButton comp=new JButton("Compile"),
browse=new JButton("...");
JTextArea location=new JTextArea();
JPanel right=new JPanel(),
up=new JPanel();
up.setLayout(new BorderLayout());
up.add(new JScrollPane(location),"Center");
up.add(browse,"East");
right.setLayout(new BorderLayout(2,1));
right.add(up,BorderLayout.NORTH);
right.add(new JScrollPane(textPane), "Center");
right.add(comp,"South");
add(right);
add(new JScrollPane(debug));
setSize(800, 400);
setVisible(true);
browse.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
success=false;
UIManager.put("FileChooser.readOnly", Boolean.TRUE);
JFileChooser fc = new JFileChooser(loc);
int status = fc.showOpenDialog(new JFrame());
if (status==JFileChooser.APPROVE_OPTION)
{
debug.setText("");
file = fc.getSelectedFile();
dir = fc.getCurrentDirectory();
try
{
textPane.read(new FileReader(file), null);
}
catch(Exception ex)
{
}
}
}
});
comp.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
try
{
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
DiagnosticCollector<JavaFileObject> diagnostics = new DiagnosticCollector<JavaFileObject>();
StandardJavaFileManager fileManager = compiler.getStandardFileManager(diagnostics, null, null);
Iterable<? extends JavaFileObject> compilationUnits = fileManager.getJavaFileObjectsFromStrings(Arrays.asList(file+""));
String[] option=new String[]{"-g","-parameters"};
Iterable<String> options = Arrays.asList(option);
JavaCompiler.CompilationTask task=null;
fileManager.setLocation(javax.tools.StandardLocation.CLASS_OUTPUT, Arrays.asList(dir));
task = compiler.getTask(null, fileManager, diagnostics, options, null, compilationUnits);
success = task.call();
fileManager.close();
// System.out.println("Success: " + success);
if(success==true)
{
debug.setText("Success");
}
else
{
int i=1;
for (Diagnostic diagnostic : diagnostics.getDiagnostics())
if(diagnostic.getLineNumber()!=-1)
debug.append("Error on line "+diagnostic.getLineNumber()+" in "+ diagnostic+"\n");
}
}
catch(Exception ex)
{
}
}
});
}
public static void main(String[]args)
{
new Compiler();
}
}
を作るための簡単なコードを持っているコンパイラは、前のコードの前の結果を見つけることができない理由を私は知りません。そして私はそれをどのように修正するのか分かりません。詳細については
は、私は例を作った:
もを見つけることができないので、B.javaをコンパイルすることはできません作成A.class
でコンパイルされている見て、パッケージフォルダ内のクラスを見つけることができません。ここで
は、例2:フォルダを作成<path>\a\b
輸入
とアクセスクラスで
A.java
コンパイルされています
私はいくつかから
を試してみる:に
fileManager.setLocation(javax.tools.StandardLocation.CLASS_OUTPUT, Arrays.asList(dir));
:
fileManager.setLocation(javax.tools.StandardLocation.CLASS_PATH, Arrays.asList(dir));
が、それはjavax.tools.StandardLocation.CLASS_OUTPUT
の設定に加えて
これらのファイルがどこにあるのかはあなたの写真からは分かりません。彼らは*両方とも*この 'example'フォルダに住んでいますか、あるいは彼らはあるフォルダ構造' a/b'に住んでいますか? – Makoto
'example'フォルダ内の@Makoto javaファイル、パッケージが含まれている場合は構造体' a/b'フォルダ内のクラスファイルです。 – newbie