gpt4 book ai didi

java - 用于有条件生成文件名的 UDF

转载 作者:行者123 更新时间:2023-12-02 01:04:19 25 4
gpt4 key购买 nike

我想根据条件动态传递文件名。我已经编写了下面的代码,但文件名没有被传递。我认为 if 条件可能存在一些问题。

DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System","FileName");

//get current timestamp and reformat
Date date = new Date();
DateFormat df = new SimpleDateFormat("yyyyMMddHHmmss");

//define filename
String filename = new String("");
if (orgid == "G"||"ZG"||"S")
{
filename = "N_" + df.format(date) + ".txt" ;
}
if (orgid == "L")
{
filename = "D_" + df.format(date) + ".txt" ;
}

if (orgid == "F"||"IV")
{
filename = "F_" + df.format(date) + ".txt" ;
}


conf.put(key, filename);

return filename;

请告诉我哪里出错了。

最佳答案

几件事:

不要使用==来比较字符串是否相等。请改用 equals() 方法。 == 检查两个对象是否指向同一内存位置,而 String#equals()方法评估对象中值的比较。

不要以这种方式初始化字符串变量:String filename = new String("");。这是一个字符串构造函数调用。你应该做的是:String filename = "";.

您无法以这种方式检查特定变量是否包含多种可能性之一:

if (orgid == "G" || "ZG" || "S") {

如前所述,您需要使用 String#equals() 方法并与其他可能性进行比较,您需要将每个字符串与变量进行比较,例如:

if (orgid.equals("G") || orgid.equals("ZG") || orgid.equals("S")) {

最好使用switch 语句代替类似的内容,例如:

/* Using the String#toUpperCase() method ensures that 
we don't need to worry about what letter case happens
to be in orgid. */
switch (orgid.toUpperCase()) {
case "G":
case "ZG":
case "S":
filename = "N_" + df.format(date) + ".txt";
break;
case "L":
filename = "D_" + df.format(date) + ".txt";
break;
case "F":
case "IV":
filename = "F_" + df.format(date) + ".txt";
break;
default:
System.err.println("Can Not Establish A Proper File Name (missing prefix)!");
return;
}

关于java - 用于有条件生成文件名的 UDF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60255998/

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