java classの呼び出し方を教えて下さい。
java classの呼び出し方を教えて下さい。
public class test extends Applet implements Runnable,ActionListener,KeyListener{
Thread th; // スレッド宣言
AudioClip IdoSound,KaitenSound,KesiSound,SetSound,CrySound;
public void init(){
}
・
・
・
public void test(){
ここで、最下欄の
class stream{
public static void main(String args[]){
}
を実行させたいのですが、記入方法が解りません・・・
}
public int kesiOne(int VP,int HP){
}
・
・
・
class stream{
public static void main(String args[]){
try{
File file = new File("c:\\java\\data.txt");
if (checkBeforeWritefile(file)){
PrintWriter pw = new PrintWriter(new BufferedWriter(new FileWriter(file)));
pw.println("12345");
pw.close();
}else{
System.out.println("ファイルに書き込めません");
}
}catch(IOException e){
System.out.println(e);
}
}
private static boolean checkBeforeWritefile(File file){
if (file.exists()){
if (file.isFile() && file.canWrite()){
return true;
}
}
return false;
}
}
解りにくい書き方で申し訳け有りませんが、宜しくお願いします。
お礼
遅くなりましたが、ご回答ありがとうございました。大変参考になりました。