awt簡單應用二 標籤Label

2021-06-16 22:34:15 字數 583 閱讀 7721

2.

標籤 label

public class awttest {

//建立框架

public static void main(string args) {

frame frame = new frame("我的

gui");

frame.setbackground(color.yellow);

frame.setlocation(300,100);

frame.setsize(300,300);

label label = new label("標籤

");

label.setalignment(label.center);

frame.add(label);

frame.setvisible(true);

注意:關於標籤中的文字居中問題,在frame

中放入標籤,這個標籤預設大小和

frame

一樣大,如果要設定位置,需要布局管理器做調整,或者不使用布局管理器

( setlayout(null))

,使用setbounds()

方法。

xpath的簡單應用,常見li標籤分組

coding utf 8 from lxml import etree text html etree.html text print html 檢視element物件中包含的字串 print etree.tostring html decode 獲取class為item 1 li下的a的herf ...

form表單的常用標籤以及簡單應用

action login 表示設定表單提交資料時,後台接收的url 介面 method get 提交表單資料的方式 請求後台介面的方法 get,post.下來詳細區別get,post。獲取資料位址列可見 提交資料隱藏 可提交大量資料 表單要上傳檔案,則必須是post請求。enctype multip...

thrift介紹及應用(二) 簡單應用

接上文 thrift介紹及應用 一 介紹 thrift檔案 demo.thirft,來自官網 如下 struct userprofile service userstorage 執行 thrift gen cpp demo.thrift則生成的檔案如下 需要強調的是,thrift有自己的網路傳輸格式...