Bạn có thể đặt chiều rộng cố định cho văn bản trong không gian người dùng bằng cách đặt giá trị thành wrapWidth bất động sản. Khi bạn làm như vậy, chiều rộng nhất định được coi là ranh giới của văn bản theo tọa độ người dùng và văn bản được sắp xếp theo chiều rộng theo chiều rộng đã cho.
Nếu bạn chưa cung cấp bất kỳ giá trị nào cho thuộc tính này, theo mặc định, chiều dài dòng dài nhất trong văn bản được coi là chiều rộng của hộp giới hạn.
Căn chỉnh văn bản là sự sắp xếp văn bản theo chiều ngang trong hộp giới hạn. Bạn có thể điều chỉnh căn chỉnh của văn bản bằng cách sử dụng setTextAlignment () phương pháp. Phương thức này chấp nhận một trong các hằng số của enum có tên là TextAlignment và điều chỉnh văn bản cho phù hợp. Enum này cung cấp 3 hằng số -
-
TRUNG TÂM - Căn chỉnh văn bản ở giữa hộp bao quanh.
-
JUSTIFY - Căn chỉnh văn bản trong hộp giới hạn.
-
TRÁI - Căn chỉnh văn bản sang trái.
-
QUYỀN - Căn chỉnh văn bản sang bên phải.
Ví dụ
import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.InputStream; import java.util.Scanner; import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.paint.Color; import javafx.stage.Stage; import javafx.scene.text.Text; import javafx.scene.text.TextAlignment; public class TextAllignment extends Application { public void start(Stage stage) throws FileNotFoundException { //Reading the contents of a text file. InputStream inputStream = new FileInputStream("D:\\sample.txt"); Scanner sc = new Scanner(inputStream); StringBuffer sb = new StringBuffer(); while(sc.hasNext()) { sb.append(" "+sc.nextLine()+"\n"); } //Creating a text object Text text = new Text(10.0, 25.0, sb.toString()); //Wrapping the text text.setWrappingWidth(565); //Setting the alignment text.setTextAlignment(TextAlignment.Right); //Setting the stage Group root = new Group(text); Scene scene = new Scene(root, 595, 150, Color.BEIGE); stage.setTitle("Text Alignment"); stage.setScene(scene); stage.show(); } public static void main(String args[]){ launch(args); } }
sample.txt
Giả sử sau đây là nội dung của tệp sample.txt -
Tutorials Point originated from the idea that there exists a class of readers who respond better to online content and prefer to learn new skills at their own pace from the comforts of their drawing rooms. The journey commenced with a single tutorial on HTML in 2006 and elated by the response it generated, we worked our way to adding fresh tutorials to our repository which now proudly flaunts a wealth of tutorials and allied articles on topics ranging from programming languages to web designing to academics and much more.
Đầu ra
Theo cách tương tự, nếu bạn thay đổi giá trị căn chỉnh, bạn sẽ nhận được kết quả đầu ra theo -
TRÁI -
TRUNG TÂM -
JUSTIFY -