gpt4 book ai didi

java - 在 Web 应用程序中使用静态 StringWriter 的正确方法是什么?

转载 作者:行者123 更新时间:2023-12-02 13:34:30 25 4
gpt4 key购买 nike

我在 Web 应用程序的 Handler 类中有一个静态 StringWriter 变量,由该类中的多个私有(private)方法使用。每个方法都会将一个字符串附加到该变量,最后 StringWriter 将连接的字符串写入文件。但是在测试 Web 应用程序时,我意识到 StringWriter 仍然保存着之前所有测试的值。我使用这个问题的答案( How do you "empty" a StringWriter in Java? )作为解决方法,但我觉得这在设计模式和安全性方面是不正确的。

正确吗?有更好的办法吗?

public class BaseHandler {
private static StringWriter sw = new StringWriter();

public static void writeToFile(){
firstMethod();
secondMethod();
finalMethod();
}
private static void firstMethod(){
sw.append("Pandora's");
}

private static void secondMethod(){
sw.append("Box");
}

private static void finalMethod(){
sw.append("!");
//sw writes value to file
...
sw.getBuffer().setLength(0);
}
}

最佳答案

我会问自己,我需要一个保持状态的 BaseHandler 吗?现在,您的处理程序在 sw 字段中保存一个状态,但如果您不需要此状态,则无需创建字段。

例如,您可以这样做:

public class BaseHandler {


public static void writeToFile(){
StringWriter sw = new StringWriter();
firstMethod(sw);
secondMethod(sw);
finalMethod(sw);
}
private static void firstMethod(StringWriter sw){
sw.append("Pandora's");
}

private static void secondMethod(StringWriter sw){
sw.append("Box");
}

private static void finalMethod(StringWriter sw){
sw.append("!");
//sw writes value to file
...
}
}

退出 writeToFile,StringWriter 被标记为垃圾回收。

关于java - 在 Web 应用程序中使用静态 StringWriter 的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43078398/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com