Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一批如下:
@echo off java Main 127.0.0.1 pause
现在我希望上面代码中'Main'之后的数字是一个字符串,这样你就可以通过编辑批处理文件来更改字符串。
public static void main (String args[]) { .... String IP_STRING=args[0]; .... }
这行得通吗?