91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

用JAVA寫文本編輯器的方法是什么

發布時間:2021-11-16 09:05:46 來源:億速云 閱讀:114 作者:iii 欄目:開發技術

本篇內容介紹了“用JAVA寫文本編輯器的方法是什么”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

下面我們要實現的是一個點擊選擇文本格式的窗口,這里同樣是要畫一個窗口,跟(二)差不多。要實現的功能呢,主要是有幾個ComboBox彈出list出來,選中的屬性改變下面的文本。最下面兩個按鈕,確定則主窗口文本改變,取消則不改變。

在這里我建議大家可以先重新開一個工程,然后一步一步的測試完成后,將代碼拷回來,把main刪掉就可以了。

剛剛提到的界面最上方有幾個下拉框,這個需要用JComboBox實現,而內容的填充呢,需要相對應的數組。   

public class about_Format extends JFrame{
 
	private JComboBox choose_word_style;
	private JComboBox choose_word_big;
	private JComboBox choose_word_pattern;
	private JComboBox choose_word_color;
	
	private String[] styles = {"宋體","黑體","楷體","微軟雅黑","隸書"};
	private String[] colors = {"紅色","藍色","綠色","黑色","白色","黃色"};
	private String[] word_big = {"2","4","8","16","24","32","64","72"};
	private String[] pattern = {"常規","傾斜","粗體"};
	
	private JPanel paneNorth;//用于裝四個ComboBox
	
	public about_Format() {
		  initBox();
		  initLocation();
		  
		  this.setSize(550,200);
		  this.setTitle("文字格式");
		  this.setVisible(true);
		  this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
	  }
	
	/**
	   * 初始化布局
	   * 將每個控件按照一定得布局排在this窗口中
	   */
	  public void initLocation() {
		  paneNorth = new JPanel();
		  paneNorth.add(new JLabel("字體:"));
		  paneNorth.add(choose_word_style);
		  paneNorth.add(new JLabel("字號:"));
		  paneNorth.add(choose_word_big);
		  paneNorth.add(new JLabel("字形:"));
		  paneNorth.add(choose_word_pattern);
		  paneNorth.add(new JLabel("顏色:"));
		  paneNorth.add(choose_word_color);
		  this.add(paneNorth,BorderLayout.NORTH);
		  
		  
		  
	  }
	
	/**
  	 * 初始化幾個comboBox 
  	 * 把相應的選項加入
  	 */
  public void initBox() {
	  choose_word_style = new JComboBox(styles);
	  choose_word_big = new JComboBox(word_big);
	  choose_word_pattern = new JComboBox(pattern);
	  choose_word_color = new JComboBox(colors);
  }
  
  public static void main(String[] args) {
		about_Format a = new about_Format();
	}
}

首先我們在類內聲明了變量,然后通過initBox()方法,進行初始化,這樣顯得結構比較整齊。方法內將comboBox實例化,并且將相應的字符串數組放入,這樣list效果就會出來了。

接下來,我們需要一個容器panel來把四個JComboBox裝進去,所以在initLocation()方法里實例化一個panel,把一大堆JLabel,JComboBox裝進去了。然后再將panel裝進父窗體,設置屬性north。

下來是一個文本顯示區域,可以有很多種,我這里選了JTextField,這里需要提前講一下,這里我還提前定義了一堆的字體屬性,是為了最終子父窗體屬性的影響而存在的,這里不需要在意:

public class about_Format extends JFrame{
 
	...
	
	private JPanel paneNorth;//用于裝四個ComboBox
	private JPanel paneCenter;
	
	private JTextField showText ;
	// 用一個font來裝選中的的屬性,每選中一次,對對應的屬性修改
		//然后集成一個font里進行修改
		//對selectedFont 設置默認屬性
		private Font selectedFont = new Font("黑體",Font.PLAIN, 32);
		private String selectedStyle = "宋體";
		private int selectedBig = 32;
		private int selectedPattern = Font.PLAIN;
		private Color selectedColor = Color.BLACK;
	
	public about_Format() {
		  initBox();
		  initText(); // 這里要放在Location前因為initText里有元素被Location訪問 否則會出現空指針異常
		  initLocation();
		  
		  
		  this.setSize(550,200);
		  this.setTitle("文字格式");
		  this.setVisible(true);
		  this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
	  }
	
	/**
	   * 初始化布局
	   * 將每個控件按照一定得布局排在this窗口中
	   */
	  public void initLocation() {
		  paneNorth = new JPanel();
		  ...
		  
		  paneCenter = new JPanel();
		  paneCenter.add(showText);
		  this.add(paneCenter, BorderLayout.CENTER);
		  
	  }
	  
	  /**
	  	 * 初始化展示字體區域
	  	 */
	  	public void initText() {
		  showText = new JTextField("字體展示");
		  showText.setFont(selectedFont);
		  showText.setEditable(false);
		  showText.setSize(100,160);
		  //showText.setForeground(Color.red);
	  }
	
	/**
  	 * 初始化幾個comboBox 
  	 * 把相應的選項加入
  	 */
  public void initBox() {
	  ...
  }
  
  public static void main(String[] args) {
		about_Format a = new about_Format();
	}
}

相信到這里大家的思路都清晰了吧,其實沒有那么復雜。我們只需要把每一個部件拆開來看,一個個的去實現就可以了。

接下來我們只需要添加兩個按鈕,然后統一響應JComboBox和Button的事件就好了,照例在面板下部添加button,然后繼承接口,處理回調事件。

添加兩個button的代碼:

public class about_Format extends JFrame{
 
	...
	
	private JPanel paneNorth;//用于裝四個ComboBox
	private JPanel paneCenter;
	private JPanel paneSouth;
	
	private JButton btn_ok;
	private JButton btn_cancel;
	
	private JTextField showText ;
	...
	
	public about_Format() {
		  initBox();
		  initText();
		  initButton();
		  initLocation();
		  
		  
		  this.setSize(550,200);
		  this.setTitle("文字格式");
		  this.setVisible(true);
		  this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
	  }
	
	/**
	   * 初始化ok 和cancel 兩個按鈕
	   */
	  private void initButton() {
		  btn_ok = new JButton("OK");
		  btn_cancel = new JButton("CANCEL");
		}
	
	/**
	   * 初始化布局
	   * 將每個控件按照一定得布局排在this窗口中
	   */
	  public void initLocation() {
		  ...
		  this.add(paneCenter, BorderLayout.CENTER);
		  
		  paneSouth = new JPanel();
		  paneSouth.add(btn_ok);
		  paneSouth.add(btn_cancel);
		  this.add(paneSouth, BorderLayout.SOUTH);
	  }
	  
	  /**
	  	 * 初始化展示字體區域
	  	 */
	  	public void initText() {
		  showText = new JTextField("字體展示");
		  showText.setFont(selectedFont);
		  showText.setEditable(false);
		  showText.setSize(100,160);
		  //showText.setForeground(Color.red);
	  }
	
	/**
  	 * 初始化幾個comboBox 
  	 * 把相應的選項加入
  	 */
  public void initBox() {
	  ...
  }
  
  public static void main(String[] args) {
		about_Format a = new about_Format();
	}
}

下面統一添加監聽器,這回我們用ItemListener,ActionListener兩個接口,我們可以把button跟item分開來。如果想要統一監聽也可以自己改。

添加監聽器后代碼:

public class about_Format extends JFrame implements ItemListener,ActionListener{
 
	...
	
	...
	
	private JButton btn_ok;
	private JButton btn_cancel;
	
	private JTextField showText ;
	// 用一個font來裝選中的的屬性,每選中一次,對對應的屬性修改
		//然后集成一個font里進行修改
		//對selectedFont 設置默認屬性
		private Font selectedFont = new Font("黑體",Font.PLAIN, 32);
		private String selectedStyle = "宋體";
		private int selectedBig = 32;
		private int selectedPattern = Font.PLAIN;
		private Color selectedColor = Color.BLACK;
	
	public about_Format() {
		  initBox();
		  initText();
		  initButton();
		  initLocation();
		  initListener();
		  addBtnListener();
		  
		  this.setSize(550,200);
		  this.setTitle("文字格式");
		  this.setVisible(true);
		  this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
	  }
	
	/**
	   * 時間監聽回調函數
	   * 對每個item做出事件響應
	   */
	  @Override
	  public void itemStateChanged(ItemEvent e) {
		  if (e.getItem() == "宋體") {
			  selectedStyle = "宋體";
			  renewFont();
		  }else if (e.getItem() == "黑體") {
			  selectedStyle = "黑體";
			  renewFont();
		  }else if (e.getItem() == "楷體") {
			  selectedStyle = "楷體";
			  renewFont();
		  }else if (e.getItem() == "微軟雅黑") {
			  selectedStyle = "微軟雅黑";
			  renewFont();
		  }else if (e.getItem() == "隸書") {
			  selectedStyle = "隸書";
			  renewFont();
		  }else if (e.getItem() == "常規") {
			  selectedPattern = Font.PLAIN;
			  renewFont();
		  }else if (e.getItem() == "傾斜") {
			  selectedPattern = Font.ITALIC;
			  renewFont();
		  }else if (e.getItem() == "粗體") {
			  selectedPattern = Font.BOLD;
			  renewFont();
		  }else if (e.getItem() == "2") {
			  selectedBig = 2;
			  renewFont();
		  }else if (e.getItem() == "4") {
			  selectedBig = 4;
			  renewFont();
		  }else if (e.getItem() == "8") {
			  selectedBig = 8;
			  renewFont();
		  }else if (e.getItem() == "16") {
			  selectedBig = 16;
			  renewFont();
		  }else if (e.getItem() == "24") {
			  selectedBig = 24;
			  renewFont();
		  }else if (e.getItem() == "32") {
			  selectedBig = 32;
			  renewFont();
		  }else if (e.getItem() == "64") {
			  selectedBig = 64;
			  renewFont();
		  }else if (e.getItem() == "72") {
			  selectedBig = 72;
			  renewFont();
		  }else if (e.getItem() == "紅色") {
			  selectedColor = Color.red;
			  renewFont();
		  }else if (e.getItem() == "黑色") {
			  selectedColor = Color.black;
			  renewFont();
		  }else if (e.getItem() == "藍色") {
			  selectedColor = Color.blue;
			  renewFont();
		  }else if (e.getItem() == "黃色") {
			  selectedColor = Color.yellow;
			  renewFont();
		  }else if (e.getItem() == "綠色") {
			  selectedColor = Color.green;
			  renewFont();
		  }else if (e.getItem() == "白色") {
			  selectedColor = Color.WHITE;
			  renewFont();
		  }
	  }
	  
	  /**
	   * 兩個btn的監聽事件回調
	   * @param arg0
	   */
	  @Override
	  public void actionPerformed(ActionEvent e) {
		  if (e.getSource() == btn_cancel) {
			  this.dispose();//銷毀當前窗口
		  }else if (e.getSource() == btn_ok) { // 調用父窗體的實例,拿到textarea并對其setFont
			  //fileManagement.getEdit_text_area().setFont(selectedFont); // 這里的Edit_text_area設置為靜態變量static 函數也一樣  這樣才能調用
			  //fileManagement.getEdit_text_area().setForeground(selectedColor); // 設置顏色
			  // 在父窗口內必須將Edit_text_area設置為static變量(靜態變量)
			  // 靜態變量的特點是,已經對象一經實例化(test1被new出來) 其中的靜態變量也會在內存中存在,一直持續到實例被銷毀
			  // 這時我們我們可以對其進行訪問 
			  
			  /*test1 t1 = new test1();
			  t1.getEdit_text_area().setFont(selectedFont);*/
			  /**
			   * 以上這個方法是不行的,因為會通過實例化test1 窗口來設置一個新的Font的窗口,與我們想要的效果不相符
			   * 我們想要的是在原父窗口內將其字體改變格式
			   */
			  this.dispose();
		  }
	  }
	  
	  public void renewFont() {
		  selectedFont = new Font(selectedStyle,selectedPattern,selectedBig);
		  showText.setFont(selectedFont);
		  showText.setForeground(selectedColor);
	  }
	  
	/**
	   * 對ComboBox添加監聽器
	   */
	  private void initListener() {
		  choose_word_style.addItemListener(this);
		  choose_word_big.addItemListener(this);
		  choose_word_pattern.addItemListener(this);
		  choose_word_color.addItemListener(this);
	  }
	
	/**
	   * 給兩個btn添加監聽器
	   */
	  public void addBtnListener() {
		  btn_ok.addActionListener(this);
		  btn_cancel.addActionListener(this);
	  }
	
	/**
	   * 初始化ok 和cancel 兩個按鈕
	   */
	  private void initButton() {
		  btn_ok = new JButton("OK");
		  btn_cancel = new JButton("CANCEL");
		}
	
	/**
	   * 初始化布局
	   * 將每個控件按照一定得布局排在this窗口中
	   */
	  public void initLocation() {
		  ...
	  }
	  
	  /**
	  	 * 初始化展示字體區域
	  	 */
	  	public void initText() {
		  ...
	  }
	
	/**
  	 * 初始化幾個comboBox 
  	 * 把相應的選項加入
  	 */
  public void initBox() {
	  ...
  }
  
  public static void main(String[] args) {
		about_Format a = new about_Format();
	}
}

大家可能被嚇到了,一下子跳出來那么多代碼。莫慌,這里一個個分析還是很簡單的。剛才也說過了,我們現在需要對button和item添加監聽器,然后在回調函數里處理就好了,至于處理的內容。無非就是兩個button點擊然后關閉窗口。item選擇對showText改變Font,至于怎么變,前面我們聲明的selected屬性就很有用了,可以通過他們減少很多代碼量。這里不需要多說,大家看一眼就明白了。

OK,到這里,一個完整的可以選擇文本格式的小窗口已經獨立的出來了。那我們接下來就是把除了main之外的其他內容拷到原來的工程里,當然要新建一個.java。完成之后,我們就可以考慮btn_ok點擊的時候主窗體文本改變的問題。

不多說,首先在父窗體的actionPerformed里處理事件,把about_Format窗口彈出來再說。

在主窗體.java內,將JTextArea 設置為static,然后給一個getter 方法:       

private static JTextArea edit_text_area;
 //private JTextArea edit_text_area; // 原來
public static JTextArea getEdit_text_area() {
 //public JTextArea getEdit_text_area() { 
  return edit_text_area;
 }

在about_Format.java里給btn_ok添加事件:

else if (e.getSource() == btn_ok) { // 調用父窗體的實例,拿到textarea并對其setFont
     test5.getEdit_text_area().setFont(selectedFont); // 這里的Edit_text_area設置為靜態變量static 函數也一樣  這樣才能調用
     //fileManagement.getEdit_text_area().setForeground(selectedColor); // 設置顏色
     // 在父窗口內必須將Edit_text_area設置為static變量(靜態變量)
     // 靜態變量的特點是,已經對象一經實例化(test1被new出來) 其中的靜態變量也會在內存中存在,一直持續到實例被銷毀
     // 這時我們我們可以對其進行訪問 
     
     /*test1 t1 = new test1();
     t1.getEdit_text_area().setFont(selectedFont);*/
     /**
      * 以上這個方法是不行的,因為會通過實例化test1 窗口來設置一個新的Font的窗口,與我們想要的效果不相符
      * 我們想要的是在原父窗口內將其字體改變格式
      */
     this.dispose();
    }

“用JAVA寫文本編輯器的方法是什么”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平原县| 青岛市| 鄂伦春自治旗| 江阴市| 金塔县| 长垣县| 道真| 富锦市| 桐庐县| 江都市| 龙泉市| 霍邱县| 福州市| 交口县| 明溪县| 兴文县| 普定县| 瓦房店市| 乐至县| 徐闻县| 旬邑县| 西乌| 平潭县| 日照市| 衡阳县| 谷城县| 通许县| 淳安县| 东至县| 高碑店市| 房产| 康乐县| 阆中市| 汤阴县| 徐水县| 什邡市| 乐东| 翁源县| 昭平县| 广宗县| 武穴市|