⑴ java 如何使程序返回到指定地方
把輸入卡號那段代碼寫到一個方法里,如果!=16,調用一下那個方法
⑵ java中怎麼直接獲得xml中的某個指定的節點
可以通過元素中的getText方法獲取到節點的內容。
舉例:
SAXReader sax = new SAXReader();
Document document = sax.read(reader);//reader為定義的一個字元串,可以轉換為xml
Element root = document.getRootElement();//獲取到根節點元素String str = root .getText()//獲取到節點的內容
用到的是dom4j-1.6.1.jar,需要引入的包是:
import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.Element;
import org.dom4j.io.SAXReader;
備註:如果是多個子節點可以通過」Element xx=root .element("code")「獲取到子節點的元素,前提是需要知道子節點的名稱。
⑶ java中如何截取字元串中的指定一部分
java用substring函數截取string中一段字元串
在String中有兩個substring()函數,如下:
一:String.substring(intstart)
參數:
start:要截取位置的索引
返回:
從start開始到結束的字元串
例如:Stringstr="helloword!";System.out.println(str.substring(1));
System.out.println(str.substring(3));
System.out.println(str.substring(6));
將得到結果為:
elloword!
loword!
ord!
如果start大於字元串的長度將會拋出越界異常;
二:String.substring(intbeginIndex,intendIndex)
參數:
beginIndex開始位置索引
endIndex結束位置索引
返回:
從beginIndex位置到endIndex位置內的字元串
例如:Stringstr="helloword!";
System.out.println(str.substring(1,4));
System.out.println(str.substring(3,5));
System.out.println(str.substring(0,4));
將得到結果為:
ell
lo
hell
如果startIndex和endIndex其中有越界的將會拋出越界異常。
⑷ java如何實現替換指定位置的指定字元串的功能
可以使用StringBuffer定義字元串,之後使用replace方法替換指定位置的字元串為指定的字元串內容,如下代碼:
public class Demo1 {
public static void main(String[] args) {
StringBuffer buffer = new StringBuffer("123456");
System.out.println(buffer.toString());//輸出123456
buffer.replace(0, 1, "a");
System.out.println(buffer.toString());//輸出a23456
}
}
這里簡單介紹一下replace方法的使用,replace方法一共有三個參數,第一個參數是指定要替換的字元串的開始位置,第二個參數是指定要替換的字元串的結束位置(注意這里的結束位置不包括本身),第三個參數是指定想將字元串替換成什麼內容。
如:原字元串內容為"123456",現在調用replace(0, 2, "abc"),原字元串變為"abc3456"
⑸ java 怎麼用命令進入指定的目錄
這個跟java沒關系,完全是dos命令
在dos里輸入 c: 回車,就到C盤了,其他類似
如果C盤下有abc文件夾,輸入cd abc 就可以進去了,cd就是進入文件夾的命令
cd..是退回到上一層目錄
cd/ 是退回到根目錄
⑹ 如何根據java根據指定的字元,分割字元串
根據java根據指定的字元,分割字元串的方法是:String temp[]=result.split(",");
⑺ java中如何截取字元串中的指定一部分
具體方法如下:
String useName=
F:workspacessh_.jpg ;
int begin=useName.indexOf(「.」);
int last=useName.length();
System.out.println(useName.substring(begin,last));
public String substring(int beginIndex, int endIndex);
第一個int為開始的索引,對應String數字中的開始位置。第二個是截止的索引位置,對應String中的結束位置.
⑻ 在java中如何選中指定的字元串
你什麼意思?
⑼ java(屏幕指定位置執行操作)
try {
Robot rob=new Robot();
rob.mouseMove(100, 100);
rob.mousePress(MouseEvent.BUTTON1);
rob.mouseRelease(MouseEvent.BUTTON1);
}
catch (AWTException exception) {
exception.printStackTrace();
}
⑽ java截取指定字元串中的某段字元如何實現
如下圖,給你貼出了代碼段。可以利用字元串的substring函數來進行截取。
結果是:456789(注意:包括4。)
示例:
"hamburger".substring(3,8) returns "burge"
"smiles".substring(0,5) returns "smile"