javaisAbsolute() 是什么意思
答案:2 悬赏:70 手机版
解决时间 2021-02-21 14:51
- 提问者网友:爱了却不能说
- 2021-02-20 15:37
javaisAbsolute() 是什么意思
最佳答案
- 五星知识达人网友:孤老序
- 2021-02-20 16:59
package com.yiibai;
import java.io.File;
public class FileDemo {
public static void main(String[] args) {
File f = null;
String path;
boolean bool = false;
try{
// create new file
f = new File("C:\test.txt");
// true if the file path is absolute, else false
bool = f.isAbsolute();
// get the path
path = f.getPath();
// prints
System.out.println(path+" is absolute? "+ bool);
// create new file
f = new File("test.txt");
// true if the file path is absolute, else false
bool = f.isAbsolute();
// get the path
path = f.getPath();
// prints
System.out.print(path+" is absolute? "+bool);
}catch(Exception e){
// if any error occurs
e.printStackTrace();
}
}
}
让我们编译和运行上面的程序,这将产生以下结果:
C: est.txt is absolute? true
test.txt is absolute? false
import java.io.File;
public class FileDemo {
public static void main(String[] args) {
File f = null;
String path;
boolean bool = false;
try{
// create new file
f = new File("C:\test.txt");
// true if the file path is absolute, else false
bool = f.isAbsolute();
// get the path
path = f.getPath();
// prints
System.out.println(path+" is absolute? "+ bool);
// create new file
f = new File("test.txt");
// true if the file path is absolute, else false
bool = f.isAbsolute();
// get the path
path = f.getPath();
// prints
System.out.print(path+" is absolute? "+bool);
}catch(Exception e){
// if any error occurs
e.printStackTrace();
}
}
}
让我们编译和运行上面的程序,这将产生以下结果:
C: est.txt is absolute? true
test.txt is absolute? false
全部回答
- 1楼网友:渡鹤影
- 2021-02-20 17:33
absolute(int row) 将光标移动到此 resultset 对象的给定行编号。
rs结果集就像游标一样,next()一下就移动一下
用
absolute(int row)可以直接移动游标到指定行
希望对你有帮助
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯