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.
インデックスを使用せずに文字列の特定の部分を取得する方法。私の文字列は次のようになります:
String path = "D:\SMPPPushGW_SMSCID1_Passive\note.bat";
上記の文字列から、抽出したい
D:\SMPPPushGW_SMSCID1_Passive\
誰でもコードを提供できますか??
前もって感謝します。
ファイルのパスが必要な場合は、Java File API を使用できます。
String path = "D:\SMPPPushGW_SMSCID1_Passive\note.bat"; File file = new File(path); System.out.println(file.getParentFile().getAbsolutePath());