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]; .... }
これは機能しますか?