0
0

vbaコードフォマード

Posted at

javacode

import com.google.googlejavaformat.java.Formatter;
import com.google.googlejavaformat.java.FormatterException;

import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;

public class VbaCodeFormatter {

    public static void main(String[] args) {
        // 指定VBA代码文件路径
        String vbaCodeFilePath = "path/to/your/vba/code/file.vba";

        try {
            // 读取VBA代码文件内容
            String vbaCode = new String(Files.readAllBytes(Paths.get(vbaCodeFilePath)), StandardCharsets.UTF_8);

            // 使用Google Java代码格式化器格式化代码
            String formattedCode = formatVbaCode(vbaCode);

            // 将格式化后的代码写回文件
            writeFormattedCodeToFile(formattedCode, vbaCodeFilePath);

        } catch (IOException | FormatterException e) {
            e.printStackTrace();
        }
    }

    private static String formatVbaCode(String vbaCode) throws FormatterException {
        // 使用Google Java代码格式化器格式化代码
        return new Formatter().formatSource(vbaCode);
    }

    private static void writeFormattedCodeToFile(String formattedCode, String filePath) throws IOException {
        // 将格式化后的代码写回文件
        Path outputPath = Paths.get(filePath.replace(".vba", "_formatted.vba"));
        Files.write(outputPath, formattedCode.getBytes(StandardCharsets.UTF_8));
    }
}

pom.xml

<dependencies>
    <dependency>
        <groupId>com.google.googlejavaformat</groupId>
        <artifactId>google-java-format</artifactId>
        <version>1.11.0</version> <!-- 使用最新版本 -->
    </dependency>
</dependencies>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0