zoukankan      html  css  js  c++  java
  • spm——use maven to test Hello TianZhuang!

    田壮

    TianZhuang

    3012218069

    First,install Maven and configure the environment variables.

    And then, create the project

    And that was the project that was created

    Then, compile, test and package

    And then, import the package to Eclipese

    Then, Windows > Prefences > Maven > Installations

    Then, add properties.

    That was the APP.java

    That was the test.java

    package softwtest;

    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    import javafx.application.Application;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.TextField;
    import javafx.scene.layout.AnchorPane;
    import javafx.scene.text.Text;
    import javafx.stage.Stage;

    public class test extends Application{

    public static boolean isRegularRptCode(String rptCode,String regEx) {
    Pattern p1 = Pattern.compile(regEx);
    Matcher m1 = p1.matcher(rptCode);
    boolean rs1 = m1.matches();
    return rs1;
    }

    public static void main(String[ ] args) {
    test.launch( args );
    }
    public void start( Stage Stage ) {
    Stage.setTitle( "test" );
    AnchorPane root = new AnchorPane();
    Stage.setScene(new Scene(root, 500, 250));

    Text name1= new Text("姓名");
    Text name2= new Text("密码");
    Text name3= new Text("验证码");

    final TextField []tf = new TextField[3];

    tf[0] = new TextField();
    tf[1] = new TextField();
    tf[2] = new TextField();

    Button btn = new Button( );
    btn.setText("submit");


    AnchorPane.setTopAnchor(name1, 50.0);
    AnchorPane.setLeftAnchor(name1, 50.0);

    AnchorPane.setTopAnchor(name2, 100.0);
    AnchorPane.setLeftAnchor(name2, 50.0);

    AnchorPane.setTopAnchor(name3, 150.0);
    AnchorPane.setLeftAnchor(name3, 50.0);

    AnchorPane.setTopAnchor(tf[0], 50.0);
    AnchorPane.setLeftAnchor(tf[0], 105.0);

    AnchorPane.setTopAnchor(tf[1], 100.0);
    AnchorPane.setLeftAnchor(tf[1], 105.0);

    AnchorPane.setTopAnchor(tf[2], 150.0);
    AnchorPane.setLeftAnchor(tf[2], 105.0);

    AnchorPane.setTopAnchor(btn, 200.0);
    AnchorPane.setLeftAnchor(btn, 210.0);

    btn.setOnAction( new EventHandler<ActionEvent>( ) {
    public void handle(ActionEvent actEvt) {
    final String []namex = new String[3];
    for(int i=0;i<3;i++){
    namex[i] = tf[i].getText();
    if(namex[i].length()<1||namex[i].length()>6){
    System.out.println("所有输入长度应为1-6");
    }
    else if(!isRegularRptCode(namex[i],"[a-z,A-Z,0-9]*")){
    System.out.println("所有输入字符应为a-z,A-Z,0-9");
    }
    else{
    System.out.println("OK");
    }
    }
    }
    } );

    root.getChildren().add(btn);

    root.getChildren().add(name1);
    root.getChildren().add(name2);
    root.getChildren().add(name3);

    root.getChildren().add(tf[0]);
    root.getChildren().add(tf[1]);
    root.getChildren().add(tf[2]);

    Stage.show( );
    }
    }

  • 相关阅读:
    从 mian 函数开始一步一步分析 nginx 执行流程(四)
    从 mian 函数开始一步一步分析 nginx 执行流程(三)
    从 mian 函数开始一步一步分析 nginx 执行流程(二)
    从 mian 函数开始一步一步分析 nginx 执行流程(一)
    QQ游戏百万人同时在线服务器架构实现
    HTTP协议详解
    centos7用yum搭建LAMP环境
    msfvenom 木马生成(常用)
    用Digispark制作BadUSB+msf植入病毒木马
    kvm管理工具Webvirtmgr安装
  • 原文地址:https://www.cnblogs.com/tianzh/p/4461702.html
Copyright © 2011-2022 走看看