我有一个名为 server.properties 的属性文件名,我需要使用python读取属性值。
server.properties
Server_IP=127.0.0.1
Server_Port=7001
Server_Url=t3://${Server_IP}:${Server_Port}
server_detail.py
propInputStream = FileInputStream("server.properties")
configProps = Properties()
configProps.load(propInputStream)
Server_IP=configProps.get("Server_IP")
Server_Port=configProps.get("Server_Port")
Server_Url=configProps.get("Server_Url")
print(Server_IP)
print(Server_Port)
print(Server_Url)
预期结果
127.0.0.1
7001
t3:\\127.0.0.1:7001
实际结果
127.0.0.1
7001
t3://${Server_IP}:${Server_Port}
Server_IP 和 Server_Port 我可以毫无问题地获得。我怎么能得到 Server_Url 。是否有可能获得价值? 我需要使用 ant 来使用 Server_Url 属性。
如果问题已经提出,请分享网址。 提前谢谢。