以下代码动态创建一个 TextFlow 和 Text,其中最初包含换行符(可能是图像和其他窗格)。
InputStream stream = new ByteArrayInputStream(text.toString().getBytes(StandardCharsets.UTF_8));
TextFlow element = new FXMLLoader().load(stream);
但是,带有 FXML 的 ByteArrayInputStream 方法会删除所有新行。
尝试同时使用 Windows 和 Unix 行尾字符,但无论如何这都不应该有所作为,但是当您徒劳地尝试不同的组合时,您就会达到这一点。
通常建议使用 BufferedReader来取回新行,但在这里我无法控制。其他加载方法似乎采用 URL 和资源链接,但这是一个操纵字符串。
一个例子
的java代码:
package simpleexample;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.scene.layout.VBox;
import javafx.scene.paint.Color;
import javafx.scene.text.TextFlow;
import javafx.stage.Stage;
import com.jcabi.xml.XMLDocument;
public class TestFxmlWithBreaks extends Application {
@Override
public void start(Stage primaryStage) {
Scene scene = new Scene(createEntry(), 750, 750, Color.web("#666970"));
primaryStage.setScene(scene);
primaryStage.show();
}
private VBox createEntry() {
VBox entryBox = new VBox();
entryBox.setFillWidth(true);
entryBox.setSpacing(20);
entryBox.setMaxWidth(750);
try {
XMLDocument test = new XMLDocument(this.getClass().getResourceAsStream("inputFxml.xml"));
System.out.println(test.toString());
InputStream stream = new ByteArrayInputStream(test.toString().getBytes(StandardCharsets.UTF_8));
TextFlow element = new FXMLLoader().load(stream);
element.setMaxWidth(750);
entryBox.getChildren().add(element);
} catch (Exception e) {
//log something
}
return entryBox;
}
public static void main(String[] args) {
launch(args);
}
}
输入Fxml.xml:
<?xml version="1.0" encoding="UTF-8"?><?import javafx.scene.text.*?><TextFlow xmlns:fx="http://javafx.com/fxml" styleClass="paragraph">
<Text style="-fx-font-size: 20;">A list of stuff</Text>
<Text>
* stuff
* more stuff
* even more stuff, all with new lines
</Text>
<Text style="-fx-font-size: 15;">This should demonstrate it</Text>
</TextFlow>