実行時にフィーチャー・ファイルを作成し、作成したファイルにアクセスしようとしています。私はhere与えられたすべての方法に従った。実行時にJavaクラスパスにファイルを追加する方法は?
1. Is there a way to refresh the project at runtime ?
2. Is there any other way to load the file in classpath ?
[編集]サイズのためにこれを上にしてみてくださいサンプルコード
public static void createFeatureFile(String featurePath) throws IOException{
FileWriter writer = new FileWriter(featurePath);
writer.append("Feature: Test ");
writer.append("\n");
writer.append("\n");
writer.append("@test");
writer.append("\n");
writer.append("Scenario : add fruits");
writer.append("\n");
writer.append("Given I have 1 apple and 1 orange");
writer.append("\n");
writer.append("Then I add both"");
writer.append("\n");
writer.flush();
writer.close();
File file =new File(featurePath);
addFileAtRunTime(file);
}
private static void addFileAtRunTime(File file) throws Exception {
Method method = URLClassLoader.class.getDeclaredMethod("addURL", new Class[]{URL.class});
method.setAccessible(true);
method.invoke(ClassLoader.getSystemClassLoader(), new Object[]{file.toURI().toURL()});
}
カスタムクラスローダーを調べる必要があります。 –