XAMPP Control Panel screenshot
我已经安装了jdk 1.8并正确添加了系统变量的路径。 请帮帮我。
public static double deviation(File inputFile){
double number = 0;
double n = 0;
double sum = 0;
double sum1 = 0;
int count = 0;
double mean = 0;
Scanner reader = new Scanner(inputFile);
while(reader.hasNext()){
number = reader.nextDouble();
sum = sum + number;
sum1 = sum1 + Math.pow(number,2);
n++;
}
double n1 = Math.sqrt(n);
double sum11 = Math.sqrt(sum1);
mean = sum / n;
double n12 = Math.pow(n,2) - n;
double n22 = Math.pow(sum, 2);
double x = ( n * sum1 - n22) / (n12);
return Math.sqrt(x);
}
public static void main(String[] args) throws FileNotFoundException {
Scanner Scanscan = new Scanner(System.in);
System.out.print("Enter the name of the file: ");
String filename = Scanscan.nextLine();
File inputFile = new File(filename);
double deviation = deviation(inputFile);
System.out.println( "The standard deviation of the values in this file is: " + deviation);
}
答案 0 :(得分:3)
这是因为您的端口已在使用中,请更改端口并重试它应该可以正常工作。单击Tomcat旁边的config并更改端口号,从8080更改其他内容。
您也可以点击右上方的Config,然后点击服务和端口设置,转到Tomcat选项卡,将端口从8080更改为8081。
答案 1 :(得分:1)
端口8080已被其他工具(如Jira或Skype)占用,如果您位于xampp后面,请单击=>控制面板=>配置=>服务和端口设置=>并更改tomcat的端口到8081或8082之类的东西
答案 2 :(得分:0)
在 XAMPP控制面板上单击apache行中的 config => httpd.config =>,在其中查找并更改 Listen 8070 到 听8081 ,那么您的问题就解决了。 但是要打开phpmyadmin或htdocs文件夹,您必须使用localhost:8081 /而不是localhost /