JavaFX教程 – JavaFX多边形折线 多边形 import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.shape.Polygon; import javafx.stage.Stage; public class Main extends Application { @Override public void start(Stage stage) { Group root = new Group(); Scene scene = new Scene(root, 260, 80); stage.setScene(scene); Group g = new Group(); Polygon polygon = new Polygon(); polygon.getPoints().addAll(new Double[]{ 0.0, 0.0, 20.0, 10.0, 10.0, 20.0 }); g.getChildren().add(polygon); scene.setRoot(g); stage.show(); } public static void main(String[] args) { launch(args); } } 上面的代码生成以下结果。 折线 import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.shape.Polyline; import javafx.stage.Stage; public class Main extends Application { @Override public void start(Stage stage) { Group root = new Group(); Scene scene = new Scene(root, 260, 80); stage.setScene(scene); Group g = new Group(); Polyline polyline = new Polyline(); polyline.getPoints().addAll(new Double[]{...
JavaFX教程 – JavaFX颜色 在JavaFX中,我们可以对对象应用颜色(Paint)。 在JavaFX中,所有形状都可以填充简单的颜色和渐变颜色。 RGB颜色 当指定颜色值时,我们可以使用默认的RGB颜色空间中的颜色。 要创建颜色,请使用Color.rgb()方法。此方法采用三个整数值,表示红色,绿色和蓝色组件。 import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.paint.Color; import javafx.scene.text.Text; import javafx.stage.Stage; public class Main extends Application { public static void main(String[] args) { Application.launch(args); } @Override public void start(Stage primaryStage) { primaryStage.setTitle("Drawing Text"); Group root = new Group(); Scene scene = new Scene(root, 300, 250, Color.WHITE); int x = 100; int y = 100; int red = 30; int green = 40; int blue = 50; Text text = new Text(x, y, "JavaFX 2.0"); text.setFill(Color.rgb(red, green, blue, .99)); text.setRotate(60); root.getChildren().add(text); primaryStage.setScene(scene); primaryStage.show(); } } 上面的代码生成以下结果。 颜色名称 以下代码根据颜色名称创建颜色。Color.DARKBLUE import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.paint.Color; import javafx.scene.shape.Circle; import javafx.scene.text.Font; import javafx.scene.text.Text; import javafx.stage.Stage; public class Main extends Application { public static...
JavaFX教程 – JavaFX文本 另一个基本的JavaFX节点是Text节点,它允许我们在场景图上显示测试。 要创建 Text 节点,请使用 javafx.scene.text.Text 类。 所有JavaFX场景节点都从 javafx.scene.Node 扩展,并且它们继承了许多功能,例如缩放,翻译或旋转的功能。 Text节点的直接父对象是 javafx.scene.shape.Shape 类。我们可以在两个文本之间执行几何操作,如减法,相交或联合。您还可以使用文本剪辑视口区域。 import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.paint.Color; import javafx.scene.text.Text; import javafx.stage.Stage; public class Main extends Application { public static void main(String[] args) { Application.launch(args); } @Override public void start(Stage primaryStage) { primaryStage.setTitle("Drawing Text"); Group root = new Group(); Scene scene = new Scene(root, 300, 250, Color.WHITE); int x = 100; int y = 100; int red = 30; int green = 40; int blue = 50; Text text = new Text(x, y, "JavaFX 2.0"); text.setFill(Color.rgb(red, green, blue, .99)); text.setRotate(60); root.getChildren().add(text); primaryStage.setScene(scene); primaryStage.show(); } } 上面的代码生成以下结果。 旋转文本 旋转文本 import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.paint.Color; import javafx.scene.text.Text; import javafx.stage.Stage; public class Main extends Application...
Java网络教程 – Java TCP服务器 ServerSocket 类的一个对象表示Java中的TCP服务器套接字。 ServerSocket 对象可以接受来自远程客户端的连接请求。 我们可以使用no-args构造函数创建一个未绑定的服务器套接字,并使用其bind()方法将其绑定到本地端口和本地IP地址。 例子 以下代码显示如何创建服务器套接字: import java.net.InetSocketAddress; import java.net.ServerSocket; public class Main { public static void main(String[] argv) throws Exception { // Create an unbound server socket ServerSocket serverSocket = new ServerSocket(); // Create a socket address object InetSocketAddress endPoint = new InetSocketAddress("localhost", 12900); // Set the wait queue size to 100 int waitQueueSize = 100; // Bind the server socket to localhost and at port 12900 with // a wait queue size of 100 serverSocket.bind(endPoint, waitQueueSize); } } 例2 您可以通过使用以下任何构造函数在一个步骤中组合create,bind和listen操作。 等待队列大小的默认值为50。 本地IP地址的缺省值是通配符地址,即服务器计算机的所有IP地址。 ServerSocket(int port) ServerSocket(int port, int waitQueueSize) ServerSocket(int port, int waitQueueSize, InetAddress bindAddr) 您可以将套接字创建和绑定步骤合并为一个语句。 以下代码显示如何在端口12900创建服务器套接字,其中100作为等待队列大小,并在localhost回送地址。 ServerSocket serverSocket = new ServerSocket(12900, 100, InetAddress.getByName("localhost")); 要接受远程连接请求,请调用服务器套接字上的 accept()方法。 accept()方法调用阻塞执行,直到来自远程客户端的请求到达其等待队列。 The following code calls on ServerSocket will...