への完全なパス文字列を古いパスを交換してください私は下記のアプローチを試したが、うまくいかない。私は以下の言及した新しいパス
String newpath = originalpath.replaceAll(oldpath,newpath);
私を助けてもらえますか?
class Demo {
public static void main(String[] args) {
String originalpath = C:\test\sample\batchmatch\internal\a\b\a.pdf;
String oldpath = C:\test\sample\batchmatch\internal\;
String newpath = C:\testdemo\sampledemo\batchmatchdemo\internal;
String relacepath = a.replaceAll(oldpath ,newpath);
System.out.println("replacepath::"+ relacepath);
}
}
あなたは 'replaceAll'のマニュアルを読みましたか?あなたの要件はあまり明確ではありません。 – tnw
実行できない近似ではなく、問題を再現する実際の実行可能コードを表示します。参照:[mcve]を作成する方法。 –
@tnw要件はC:\ test \ sample \ batchmatch \ internal \をC:\ testdemo \ sampledemo \ batchmatchdemo \ internalに置き換える必要があります。 – user7615212