我正在尝试用 Java 编写一个配置文件,并将我的端口号放入其中,以便我的 HTTP Web 服务器连接到根路径。
配置文件:
root= some root
port=8020
我正在尝试访问这样的属性:
FileInputStream file = new FileInputStream("config.txt");
//loading properties from properties file
config.load(file);
int port = Integer.parseInt(config.getProperty("port"));
System.out.println("this is port " + port);
如果我在getProperty
方法中使用单个参数执行此操作,我会收到此错误
"java.lang.NumberFormatException: null"
但是,如果我这样访问它
int port = Integer.parseInt(config.getProperty("port", "80"));
有用。
另外,它适用于config.getProperty("root");
所以我不明白......
编辑:
import java.net.*;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.util.*;
public class Server
{
public static void main(String[] args) throws Exception
{
boolean listening = true;
ServerSocket server = null;
Properties config = new Properties();
int port = 0;
try
{
//Reading properties file
FileInputStream file = new FileInputStream("config.txt");
//loading properties from properties file
config.load(file);
port = Integer.parseInt(config.getProperty("port"));
System.out.println("this is port " + port);
System.out.println("Server binding to port " + port);
server = new ServerSocket(port);
}
catch(FileNotFoundException e)
{
System.out.println("File not found: " + e);
}
catch(Exception e)
{
System.out.println("Error: " + e);
System.exit(1);
}
System.out.println("Server successfully binded to port " + port);
while(listening)
{
System.out.println("Attempting to connect to client");
Socket client = server.accept();
System.out.println("Successfully connected to client");
new HTTPThread(client, config).start();
}
server.close();
}
}