Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Eclipse がファイル (feeds.txt としましょう) を作成すると、ファイルは自動的に保存され、Eclipse フォルダー (ワークスペース/プロジェクト フォルダーではありません) から読み取られます。ワークスペース/「プロジェクト名」フォルダーに変更するにはどうすればよいですか
ところで、私はこれを使用しました:
private static final String feedFile = " Feeds.txt";
何に使ったの?..そのような名前の場合、eclipseはプロジェクトフォルダに新しいファイルを作成する必要がありますこれを試してください
import java.io.*; try { File file = new File("Feeds.txt"); file.createNewFile(); } catch (IOException e) { }
http://www.exampledepot.com/egs/java.io/createfile.html