gpt4 book ai didi

java - 在文件 jgrasp 中找不到主要方法、小程序或 Midlet

转载 作者:行者123 更新时间:2023-12-01 10:03:15 54 4
gpt4 key购买 nike

在我的代码中,我在其中放置了一个 main 方法。该程序在 jgrasp 上编译没有错误。但它一直给我一条消息:“在文件 jgrasp 中找不到主要方法、小程序或 Midlet”

  import java.io.*;
public class XOREncyrption
{//start of class

public static void Main(String [] args)
{//start of main
File f = new File("data.txt");
File g = new File("key.txt");



try
{

FileInputStream r = new FileInputStream(f);
FileInputStream x = new FileInputStream(g);
byte [] me = new byte [(int)f.length()];
byte [] we =new byte [(int)g.length()];


int why = r.read(me);
int where =x.read(we);

//input.close();

}
catch(FileNotFoundException e)
{
System.out.print("No file");
}
catch(IOException e)
{
System.out.println("error");
}


}//end of main
}//end of class

如果有人能弄清楚为什么代码告诉我没有 main 方法,而有一个方法,我将不胜感激。

最佳答案

入口方法必须命名为“main”(小写“m”)。

关于java - 在文件 jgrasp 中找不到主要方法、小程序或 Midlet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36652330/

54 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com