20

由于我使用的是 Java 14 和 15 预览功能。试图在java中找到字符串插值。

我找到的最接近的答案是

String.format("u1=%s;u2=%s;u3=%s;u4=%s;", u1, u2, u3, u4)

由于我从很多参考资料中得到的答案是 4,5 年前提出的旧答案。java 11,12,13,14,15 中的字符串插值是否有任何更新,相当于 C#

string name = "Horace";
int age = 34;
Console.WriteLine($"Your name is {name} and your age {age}");
4

5 回答 5

27

有一些接近的东西;的实例版本String::format,称为formatted

String message = "Hi, %s".formatted(name);

它类似于String::format,但在链式表达式中使用更友好。

于 2020-08-24T21:56:13.113 回答
11

据我所知,标准 java 库中没有关于这种字符串格式的更新。

换句话说:您仍然“卡住”使用String.format()及其基于索引的替换机制,或者您必须选择一些第 3 方库/框架,例如 Velocity、FreeMarker ……请参阅此处以获取初步概述。

于 2020-08-24T10:31:15.327 回答
2

目前没有内置支持,但StringSubstitutor可以使用 Apache Commons。

import org.apache.commons.text.StringSubstitutor;
import java.util.HashMap;
import java.util.Map;
// ...
Map<String, String> values = new HashMap<>();
values.put("animal", "quick brown fox");
values.put("target", "lazy dog");
StringSubstitutor sub = new StringSubstitutor(values);
String result = sub.replace("The ${animal} jumped over the ${target}.");
// "The quick brown fox jumped over the lazy dog."

此类支持为变量提供默认值。

String result = sub.replace("The number is ${undefined.property:-42}.");
// "The number is 42."

要使用递归变量替换,请调用setEnableSubstitutionInVariables(true);.

Map<String, String> values = new HashMap<>();
values.put("b", "c");
values.put("ac", "Test");
StringSubstitutor sub = new StringSubstitutor(values);
sub.setEnableSubstitutionInVariables(true);
String result = sub.replace("${a${b}}");
// "Test"
于 2021-04-19T01:26:47.963 回答
0

看起来不错的 C# 插值 si 在这些 java 版本中根本不起作用。为什么我们需要这个 - 有漂亮且可读的代码行将文本转储到日志文件。下面是有效的示例代码(有注释 org.apache.commons.lang3.StringUtils,在某些时候需要写入,但后来不需要) - 它正在丢弃 ClassNotFound 或其他 NotFoundException - 我没有调查它。

StringSubstitutor 可能稍后会被打包成更好的东西,这将使其更容易用于日志消息转储

package main;

import java.util.HashMap;
import java.util.Map;

import org.apache.commons.text.*;
//import org.apache.commons.lang3.StringUtils;

public class Main {

    public static void main(String[] args) {
        System.out.println("Starting program");
        
        var result =  adding(1.35,2.99);

        Map<String, String> values = new HashMap<>();
        values.put("logMessageString", Double.toString(result) );

        StringSubstitutor sub = new StringSubstitutor(values);
        sub.setEnableSubstitutionInVariables(true);
        String logMessage = sub.replace("LOG result of adding: ${logMessageString}");

        System.out.println(logMessage);
        System.out.println("Ending program");
         
    }
    // it can do many other things but here it is just for prcoessing two variables 
    private static double adding(double a, double b) {
        return a+b;
    }

}
于 2021-08-11T15:08:48.393 回答
0

您也可以像这样使用 MessageFormat(Java 5.0 或更高版本)

MessageFormat.format("Hello {0}, how are you. Goodbye {0}",userName);

非常好

于 2022-01-28T14:17:56.427 回答