java查詢
Ⅰ java 查詢 問題
恩。把資料庫中查出來的年齡24-34進行截取獲得兩個數值 然後跟頁面輸入的數據進行判斷吧
Ⅱ java怎樣實現列印出查詢後的結果
首先需確認的是查詢出的結果是什麼意思?
1、如果為列表且不能使用循環列印則可以將查詢出的結果反映到頁面上來,通過頁面自身列印來實現
2、如果為基礎內容,這里指的基礎內容是基本的信息(比如:用戶名稱、性別等)則同樣可以反映到頁面上來列印。
另外這里提供兩種展現思路:
1、網頁列印,製作與word模板樣式相同的jsp頁面,通過網頁自帶的列印功能實現,不過缺點是列印出的文檔與預計樣式有些差別(比如:頁眉頁腳)
2、使用控制項,之前使用過卓正的office控制項,可以自己設置列印模板,將查詢出的結果套在模板上,列印時,利用word的列印功能進行列印。
希望回答對你有幫助
Ⅲ java 裡面的函數查詢
http://lavasoft.blog.51cto.com/62575/20876
這個頁面有下
Ⅳ java查詢商品信息
是很抽象
首先連庫(資料庫)
執行查詢語句
數值返回java界面(或jsp調用界面)
Ⅳ java關鍵字查詢演算法
import java.io.FileReader;
import java.io.BufferedReader;
import java.io.File;
public class search
{
//查找方法,參數,文件絕對路徑,查找關鍵字
public static boolean search(String filepath,String key)
{
try
{
File f = new File(filepath);
FileReader fr = new FileReader(f);
BufferedReader br = new BufferedReader(fr);
String s = "";
//int i = 1;
while((s = br.readLine()) != null)
{
if(s.indexOf(key) != -1)
{
return true;
}
}
return false;
}
catch(Exception e)
{
e.printStackTrace();
return false;
}
}
public static void main(String args[])
{
System.out.println(search.search("d://t.txt","l2"));
}
}
修改了下,加兩個變數,可以指出查找的位置。
import java.io.FileReader;
import java.io.BufferedReader;
import java.io.File;
public class search
{
//查找方法,參數,文件絕對路徑,查找關鍵字
public static String search(String filepath,String key)
{
try
{
File f = new File(filepath);
FileReader fr = new FileReader(f);
BufferedReader br = new BufferedReader(fr);
String s = "";
int i = 1;
int m = 0;
while((s = br.readLine()) != null)
{
if((m = s.indexOf(key)) != -1)
{
return "第"+i+"段,第"+m+"處";
}
i++;
}
return null;
}
catch(Exception e)
{
e.printStackTrace();
return null;
}
}
public static void main(String args[])
{
System.out.println(search.search("d://t.txt","asd"));
}
}
這個,查漢字是沒有問題的。
另外,你要全文檢索的話,indexOf()還有個方法,indexOf(int start,String key),指定開始查找的位置跟關鍵字,你查到一處後,將這個數值加1,做為繼續查找的開始位置就可以了。
Ⅵ JAVA中如何快速查詢你想要找的方法
你可以通過eclipse中的查詢功能呀,
操作步驟 菜單欄上的
search - > File - > java search - > 下邊有個radio button選中method
然後搜索就可以了
我經常是這樣搜的,感覺比用api文檔還要方便
Ⅶ java 查詢問題
HuoWuBeanmm=newHuoWuBean();
把這句放在while 循環裡面,要不然總會把前一條覆蓋掉。
Ⅷ JAVA查找
那就定義一個數組,遍歷數組,找出你需要的那個字元串
Ⅸ JAVA中怎麼實現查詢 代碼
StringBuffer sql = new StringBuffer();//組成查詢語句
sql.append("select * ");
sql.append(" from table");
Connection con = Config.getConnectionPool();//獲得資料庫連接
PreparedStatement preStmt = con.prepareStatement(sql.toString());
ResultSet rs = preStmt.executeQuery();//執行查詢語句
Object value = null;
if (rs.next())
value = rs.getObject(1);//取得查詢結果
System.out.println(value );//列印結果
Ⅹ Java實現查詢的功能
查詢部分代碼如下:
StringstrSQL;
strSQL="select*fromtb_managerwheremanager='"+jTextField1.getText().trim()+"'";
rs=db.getResult(strSQL);
try
{
if(rs.first())
{
jTextField1.setText(rs.getString("manager"));
jTextField2.setText(rs.getString("den"));
jTextField3.setText(rs.getString("ID"));
jTextField4.setText(rs.getString("remark"));
jTextField5.setText(rs.getString("sex"));
}
else
{
JOptionPane.showMessageDialog(null,"無此信息");
}
}catch(SQLExceptione)
{JOptionPane.showMessageDialog(null,"查詢信息失敗!");}
}