用java创建.gitignore

问题描述 投票:0回答:1

我知道这个问题在某种意义上可能是重复的,但首先要听我说。

我试图创建一个代码,我可以用内容创建gitignore文件,由于某种原因,我总是有一个文件扩展名为txt而没有名称。有人可以解释这种行为,为什么?

示例代码:

System.out.println(fileDir+"\\"+".gitignore");
FileOutputStream outputStream = new FileOutputStream(fileDir+"\\"+".gitignore",false);
byte[] strToBytes = fileContent.getBytes();
outputStream.write(strToBytes);
outputStream.close();
java gitignore
1个回答
1
投票

你可以使用java.nio。请参阅以下示例:

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.List;

public class StackoverflowMain {

    public static void main(String[] args) {
        // create the values for a folder and the file name as Strings
        String folder = "Y:\\our\\destination\\folder";  // <-- CHANGE THIS ONE TO YOUR FOLDER
        String gitignore = ".gitignore";
        // create Paths from the Strings, the gitignorePath is the full path for the file
        Path folderPath = Paths.get(folder);
        Path gitignorPath = folderPath.resolve(gitignore);
        // create some content to be written to .gitignore
        List<String> lines = new ArrayList<>();
        lines.add("# folders to be ignored");
        lines.add("**/logs");
        lines.add("**/classpath");

        try {
            // write the file along with its content
            Files.write(gitignorPath, lines);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

它在我的Windows 10机器上创建文件没有任何问题。你需要Java 7或更高版本。

© www.soinside.com 2019 - 2024. All rights reserved.