mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
ファイルにStringを保存するメソッド作成
This commit is contained in:
parent
15d454690e
commit
a836410cbd
|
@ -175,14 +175,46 @@ public class FileManagerImpl implements FileManager {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void saveText(String text, String fileName) {
|
public void saveText(String text, String fileName) { // TODO-rca: リファクタリング // TODO-rca: 統合
|
||||||
createFile(fileName);
|
if (isExist(fileName)) {
|
||||||
|
logger.debug("saveText", "file already exists");
|
||||||
|
// Overwrite
|
||||||
|
try {
|
||||||
|
Files.write(currentDir.resolve(fileName), text.getBytes());
|
||||||
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
try {
|
||||||
|
Files.createFile(currentDir.resolve(fileName));
|
||||||
|
Files.write(currentDir.resolve(fileName), text.getBytes());
|
||||||
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void saveText(String text, Path path) {
|
public void saveText(String text, Path path) {
|
||||||
|
if (isExist(path)) {
|
||||||
|
logger.debug("saveText", "file already exists");
|
||||||
|
// Overwrite
|
||||||
|
try {
|
||||||
|
Files.write(path, text.getBytes());
|
||||||
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
try {
|
||||||
|
Files.createFile(path);
|
||||||
|
Files.write(path, text.getBytes());
|
||||||
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue
Block a user