gpt4 book ai didi

java - 在 xaml 文件中创建°

转载 作者:太空宇宙 更新时间:2023-11-04 07:37:21 24 4
gpt4 key购买 nike

所以,我正在使用 java 制作一个 xaml 文件。这是我的 java 代码行:

String newAnswer = e.getText().substring(0, 1) + "º" + e.getText().substring(2);

现在

"º" 

根据 Google 的说法,这部分应该在我的 xaml 文件中创建一个度数符号,但是当我在 xaml 中打开输出文件时,我得到: º ,如果我删除 amp; 部分,它是正确的,但我希望 Kaxaml 首先停止添加它,如果有人知道如何实现这一点,我们将不胜感激。

这就是我的 xaml 的保存方式

Utilities.saveXml(d, "Scherm1.xaml");
Utilities:
public static void saveXml(Document document, String fileName) throws IOException {
FileWriter writer;
XMLOutputter outputter;

outputter = new XMLOutputter();
outputter.setFormat(Format.getPrettyFormat());
writer = new FileWriter(fileName);
outputter.output(document, writer);
writer.flush();
writer.close();
}

最佳答案

尝试使用

 + <TextBlock &#186;"/> 

关于java - 在 xaml 文件中创建°,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16654981/

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