當前位置:首頁 » 編程語言 » java圖書管理系統

java圖書管理系統

發布時間: 2022-12-09 11:57:57

㈠ 求一個java圖書管理系統代碼,不需要圖形化,命令行就可以,只要求實現導入圖書,查詢,刪除

importjava.io.BufferedReader;
importjava.io.File;
importjava.io.FileReader;
importjava.util.ArrayList;
importjava.util.List;
importjava.util.Scanner;

publicclassBookWork{

staticList<Book>data;
privatestaticScannerinput;

publicstaticvoidmain(String[]args){
if(!initBook("d:/book.txt")){
System.out.println("初始圖書列表失敗..");
return;
}
input=newScanner(System.in);
while(true){
try{
System.out.println("請輸入操作:");
System.out.println("1.找書2.刪除圖書3.退出");
intnumber=Integer.parseInt(input.next());
if(number==1){
findBook();
}elseif(number==2){
delBook();
}elseif(number==3){
System.out.println("退出");
break;
}else{
System.out.println("這個不是我要的...重來...");
System.out.println();
}

}catch(Exceptione){
e.printStackTrace();
System.out.println("這個不是我要的...重來...");
System.out.println();
}
}
}

privatestaticvoiddelBook(){
System.out.println("請輸入要刪除的書名或編號:");
Stringkey=input.next();
if(key!=null&&!key.equals("")){

for(Bookbook:data){
if(book.number.equals(key)||book.name.contains(key)){
data.remove(book);
System.out.println("圖書"+book.toString()+"已刪除");
return;
}
}
}
System.out.println("沒有您要刪除的");

}

privatestaticvoidfindBook(){
System.out.println("請輸入要查找的書名或編號:");
Stringkey=input.next();
if(key!=null&&!key.equals("")){

for(Bookbook:data){
if(book.number.equals(key)||book.name.contains(key)){
System.out.println("找到了圖書"+book.toString());
return;
}
}
}
System.out.println("沒有您要找的");
}

privatestaticbooleaninitBook(Stringstring){
try{
System.out.println("圖書導入中...");
System.out.println("列表文件--"+string);

Filefile=newFile(string);
if(!file.exists()){
returnfalse;
}
data=newArrayList<Book>();
BufferedReaderbufferedReader=newBufferedReader(newFileReader(file));
Stringline="";
while((line=bufferedReader.readLine())!=null){
String[]strings=line.split(",");
Bookb=newBook(strings[0],strings[1]);
data.add(b);
System.out.println("導入"+b.toString());
}
}catch(Exceptione){
e.printStackTrace();
returnfalse;
}
returntrue;
}

publicstaticclassBook{
Stringnumber;
Stringname;

publicBook(Stringnumber,Stringname){
super();
this.number=number;
this.name=name;
}

@Override
publicStringtoString(){
return"Book[編碼:"+number+",名稱:"+name+"]";
}
}
}

001,金瓶梅

002,雜事秘辛

003,飛燕外傳

004,控鶴監秘記

005,漢宮春色

㈡ 用java編寫一個 圖書館圖書借閱管理系統

---------------------------------------------------
給你修改了三個地方:

1.borrowBooks方法中,將System.out.println("你要借嗎?"); 改為:
System.out.println("你要借嗎?輸入1表示借,其他數字表示不借。");

保證輸入的時候輸入的數字,否則會報出異常。

2.borrowBooks方法中,將self[score] = all[9]; 改為:self[score] = all[i];

如果是all[9],那麼就始終是最後一本書籍信息了。

3.have方法中,你是想將所借的書籍信息都列印出來。修改的比較多,下面注釋代碼是原來的。
void have(Books[] self) {
// for (int i = 0; i < 2; i++) {
// self[i].showBookInfo();
// }

for (int i = 0; i < 3; i++) {
if(self[i]!=null)
self[i].showBookInfo();
}
}

****************** 附上所有代碼:*************************

import java.util.Scanner;

public class TestBook {
public static void main(String[] args) {
Books all[] = new Books[10];
Books self[] = new Books[3];
all[0] = new Books("java", 1, "12345", "tom", 34.0f, "人民出版社");
all[1] = new Books("c", 2, "12346", "tnn", 31.0f, "人民出版社");
all[2] = new Books("c++", 3, "12445", "mm", 35.0f, "人民出版社");
all[3] = new Books("c#", 4, "12365", "tt", 38.0f, "人民出版社");
all[4] = new Books("j2se", 5, "13345", "tosm", 31.1f, "人民出版社");
all[5] = new Books("j2ee", 6, "18345", "ttm", 32.0f, "人民出版社");
all[6] = new Books("jsp", 7, "12335", "cc", 33.0f, "人民出版社");
all[7] = new Books("net", 8, "12341", "bb", 36.0f, "人民出版社");
all[8] = new Books("ip", 9, "12343", "aa", 37.0f, "人民出版社");
all[9] = new Books("tcp", 10, "22345", "jj", 39.0f, "人民出版社");
Readers r = new Readers("xiaoming", 101, "1", 3);
r.searchAllBooks(all);
r.borrowBooks(all, self);
r.have(self);
r.give(all, self);
}
}

class Readers {
Scanner scan = new Scanner(System.in);
String names;
int nums;
String classes;
int grade;
int score = 0;

// Books self[]=new Books[3];
Readers(String n, int u, String c, int g) {
names = n;
nums = u;
classes = c;
grade = g;
}

void searchAllBooks(Books[] all) {// 查書
for (int i = 0; i < 10; i++)
all[i].showBookInfo();
// self[score]=all[0];
}

void give(Books[] all, Books[] self) {// 還書
System.out.println("請輸入您要還的書的書號");
int n = scan.nextInt();
for (int i = 0; i < 10; i++) {
if (n == all[i].num) {
for (int j = 0; j < 3; j++) {
if (self[j] == all[i]) {
self[j] = null;
System.out.println("還書成功");
}
}
}
}
}

void have(Books[] self) {
// for (int i = 0; i < 2; i++) {
// self[i].showBookInfo();
// }
for (int i = 0; i < 3; i++) {
if(self[i]!=null)
self[i].showBookInfo();
}
}

void giveMoney() {

}

void borrowBooks(Books[] all, Books[] self) {
System.out.println("請輸入您要查找的書名:");
String n = scan.next();
int i;
for (i = 0; i < 10; i++) {
if (n.equals(all[i].name)) {
all[i].showBookInfo();
break;
}
}
//System.out.println("你要借嗎?");
System.out.println("你要借嗎?輸入1表示借,其他數字表示不借。");
int j;
j = scan.nextInt();
if (j == 1) {
System.out.println("借閱成功");
//self[score] = all[9];
self[score] = all[i];
score += 1;

}
if (score < 4) {
System.out.println("您還可以借閱" + (3 - score) + "本");
} else {
System.out.println("對不起,一個人只能借3本");
}
}
}

class Books {
String name;
int num;
String ISBN;
String writer;
float price;
String publisher;

Books(String n, int u, String i, String w, float p, String l) {
name = n;
num = u;
ISBN = i;
writer = w;
price = p;
publisher = l;
}

void showBookInfo() {
System.out.println("**************************");
System.out.println("書名:" + name);
System.out.println("索書號:" + num);
System.out.println("ISBN號:" + ISBN);
System.out.println("價格:" + price);
System.out.println("出版社:" + publisher);
System.out.println("**************************");
}

}

----------------------------------------------------

㈢ JAVA版的圖書管理系統

送你一份代碼,結構大致按照你的需求了,自己增加一些小功能,不會的話請教你同學。
分給我,錢就不用了。

#include <string.h>
#define FORMAT "\n%-8d%-8d%-7d%-8d%-7d%-8d%-10s%-9s%-9s\n"
#include <stdio.h>
#include <conio.h>
#include <malloc.h>
#define NULL 0
#define N 100
#define LEN sizeof(struct book)
int M;
struct book
{int Enum;
int Cnum;
char name[10];
char author[10];
char publishor[30];
struct date
{int year;
int month;
int day;}time;
int price;
struct book*next;
}go[N];

void print()
{printf("---------------------------------------------------------------------------\n");
printf("Enum Cnum year month day price name author publishor\n");
printf("---------------------------------------------------------------------------\n");
}
void load()
{FILE *fp;
int i;
if((fp=fopen("book_list","rb"))==NULL)
{printf("cannot open file\n");
return;
}
i=0;
while((fread(&go[i],sizeof(struct book),1,fp))!=NULL)
{i++;}
M=i;
fclose(fp);
}

void save(int h)
{FILE *fp;
int i;
if ((fp=fopen("BOOK_LIS","wb"))==NULL)
{printf("cannot open file\n");
return;
}
for (i=0;i<h;i++)
if(fwrite(&go[i],sizeof(struct book),1,fp)!=1)
printf("file write error\n");
fclose(fp);
}

void f1()
{FILE *fp;
int i=0;
fp=fopen("book_list","rb");
print();
while((fread(&go[i],sizeof(struct book),1,fp))!=NULL)
{printf(FORMAT,go[i].Enum,go[i].Cnum,go[i].time.year,go[i].time.month,go[i].time.day,go[i].price,go[i].name,go[i].author,go[i].publishor);
i++;
}
fclose(fp);
getch();
}

void f2(int h)
{int i;
printf("please input %d book's information\n",h);
printf("Enum Cnum year month day price name author publishor\n");
for(i=0;i<h;i++)
{printf("Enum:\n");
scanf("%d",&go[i].Enum);
printf("Cnum:\n");
scanf("%d",&go[i].Cnum);
printf("please input year month day\n");
scanf("%d%d%d",&go[i].time.year,&go[i].time.month,&go[i].time.day);
printf("price:\n");
scanf("%d",&go[i].price);
printf("name:\n");
scanf("%s",go[i].name);
printf("author:\n");
scanf("%s",go[i].author);
printf("publishor:\n");
scanf("%s",go[i].publishor);
}
save(h);
return;
}

void f3()
{int i;
struct book;
char a[20],b[20],c[20];
load();
printf("please input 'name' or 'author':\n");
scanf("%s",a);
if(strcmp(a,"name")==0)
{printf("please input the book's name:\n");
scanf("%s",b);
for(i=0;i<M;i++)
if(strcmp(b,go[i].name)==0)
{print();
printf(FORMAT,go[i].Enum,go[i].Cnum,go[i].time.year,go[i].time.month,go[i].time.day,go[i].price,go[i].name,go[i].author,go[i].publishor);
}
}
else
{printf("please input the book's author:\n");
scanf("%s",c);
for(i=0;i<M;i++)
if(strcmp(c,go[i].author)==0)
{print();
printf(FORMAT,go[i].Enum,go[i].Cnum,go[i].time.year,go[i].time.month,go[i].time.day,go[i].price,go[i].name,go[i].author,go[i].publishor);
}
}
return;
}

void f4()
{int i,j,k;
struct book t;
load();
for(i=0;i<M;i++)
{k=i;
for(j=i+1;j<M;j++)
if(go[k].price>go[j].price)k=j;
t=go[i];go[i]=go[k];go[k]=t;
}
print();
for(i=0;i<M;i++)
printf(FORMAT,go[i].Enum,go[i].Cnum,go[i].time.year,go[i].time.month,go[i].time.day,go[i].price,go[i].name,go[i].author,go[i].publishor);
}

void f5()
{FILE *fp;
int i,j,M,flag;
char name[10];
if((fp=fopen("book_list","rb"))==NULL)
{printf("cannot open file\n");
return;
}
printf("\norriginal data:\n");
print();
for(i=0;fread(&go[i],sizeof(struct book),1,fp)!=0;i++)
printf(FORMAT,go[i].Enum,go[i].Cnum,go[i].time.year,go[i].time.month,go[i].time.day,go[i].price,go[i].name,go[i].author,go[i].publishor);
M=i;
printf("\n input the deleted name:\n");
scanf("%s",name);
for(flag=1,i=0;flag&&i<M;i++)
{if(strcmp(name,go[i].name)==0)
{for(j=i;j<M-1;j++)
{go[j].Enum=go[j+1].Enum;
go[j].Enum=go[j+1].Enum;
strcpy(go[j].name,go[j+1].name);
strcpy(go[j].author,go[j+1].author);
strcpy(go[j].publishor,go[j+1].publishor);
go[j].time.year=go[j+1].time.year;
go[j].time.month=go[j+1].time.month;
go[j].time.day=go[j+1].time.day;
go[j].price=go[j+1].price;
}
flag=0;
}
}
if(!flag)
M=M-1;
else
printf("not found!\n");
printf("\nNow,the content of file:\n");
fp=fopen("book_list","wb");
for(i=0;i<M;i++)
fwrite(&go[i],sizeof(struct book),1,fp);
fclose(fp);
fp=fopen("book_list","wb");
for(i=0;fread(&go[i],sizeof(struct book),1,fp)!=0;i++);
printf(FORMAT,go[i].Enum,go[i].Cnum,go[i].time.year,go[i].time.month,go[i].time.day,go[i].price,go[i].name,go[i].author,go[i].publishor);
fclose(fp);
}

main()
{int i,h;
clrscr();
while(1)
{printf ("\n 1 is a project that can output all information.\n");
printf ("\n 2 is a project that can add any book's information.\n");
printf ("\n 3 is a project that can search information.\n");
printf ("\n 4 is a project that can sort.\n");
printf ("\n 5 is a project that can del.\n");
printf ("\n 6 is a project that can leave.\n");
printf("please input number:1 or 2 or 3 or 4 or 5 or 6\n");
scanf("%d",&i);
switch (i)
{case 1:f1();break;
case 2:
{printf ("if you want to add book's information,please input a data:h=");
scanf("%d",&h);
f2(h);}break;
case 3:
{f3();getch();}break;
case 4:{f4();getch();}break;
case 5:{f5();getch();}break;
case 6:exit (1);
}

clrscr();}
}

㈣ 用java編寫一個,圖書管理系統

可以使用Baihi告訴我你的題目
有空能搞定你無法解決的題目
如果你有類似的要求也能聯系我

ES:\\
交易提醒:預付定金有風險
交易提醒:用戶名中包含聯系方式勿輕信

㈤ JAVA圖書管理系統會用到的技術

如果伺服器不用資料庫那麼會用到,鏈表,或者Hash表,如果有負載均衡,會用到socket,如果伺服器存儲空間小,那麼會用到壓縮技術,如果你還打算列印票據,那麼會用到嵌入式技術。

㈥ 用JAVA做一個圖書館管理系統,不需要用到資料庫

packagecom.efounder.formbuilder.dat;

importjava.util.Iterator;
importjava.util.Map;
importjava.util.Map.Entry;

importcom.efounder.formbuilder.fmt.FmtCol;

/**
*<p>Title:</p>
*<p>Description:</p>
*<p>Copyright:Copyright(c)2005</p>
*<p>Company:</p>
*@authornotattributable
*@version1.0
*/

{
protectedjava.util.MapdataCellList=null;
/**
*
*@returnMap
*/
publicMapgetDataCellList(){
returndataCellList;
}
/**
*
*@parammapMap
*/
publicvoidsetDataCellList(Mapmap){
dataCellList=map;
}
/**
*數據行上存在的是多個維度,每個維度對應的是一個數據字典
*/
publicDataRow(){
}
/**
*
*@paramkeyObject
*@paramdataCellDataCell
*/
publicvoidputDataCell(Objectkey,DataCelldataCell){
if(dataCellList==null)dataCellList=newjava.util.HashMap();
dataCellList.put(key,dataCell);
}
/**
*
*@paramkeyObject
*@returnDataCell
*/
publicDataCellgetDataCell(Objectkey){
DataCelldatacell=null;
if(dataCellList!=null){
datacell=(DataCell)dataCellList.get(key);
if(datacell==null)
datacell=getDataCellIterator(key);
}
returndatacell;
}

/**
*FmtColFLEX對象以FmtCol對象名稱為key需要遍歷取出對應的DataCelladdbywujfat20120220
*@paramkeyObject
*@returnDataCell
*/
(Objectkey){
if(dataCellList!=null){
IteratorentrySetIterator=dataCellList.entrySet().iterator();
while(entrySetIterator.hasNext()){
Entryentry=(Entry)entrySetIterator.next();
if(entry.getKey()instanceofFmtCol)break;
// if(((String)entry.getKey()).startsWith("com.efounder.formbuilder.fmt.FmtCol")){
DataCelldatacell=(DataCell)entry.getValue();
if(datacell.getDataCol()==key){
returndatacell;
}
}
}

returnnull;
}
}

㈦ Java使用面向對象編程思維編寫圖書管理系統:增加,查詢,修改,刪除,退出,怎麼寫

package com.bms;

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

// book對象
public class Book {
private String bId; // 編號
private String bName; // 書名

// getset方法

public String getbId() {
return bId;
}

public void setbId(String bId) {
this.bId = bId;
}

public String getbName() {
return bName;
}

public void setbName(String bName) {
this.bName = bName;
}

//構造方法
public Book() {
}

public Book(String bId, String bName) {
this.bId = bId;
this.bName = bName;
}

/*
* 增加
* */
public static List<Book> add(List<Book> list) {
Scanner sn = new Scanner(System.in);
System.out.print("請輸入編號:");
String bid = sn.next();
System.out.print("請輸入名稱:");
String bName = sn.next();
Book book = new Book(bid, bName);
for (Book b : list) {
if (b.bId.equals(book.bId)) {
System.out.println("編號重復,請重新輸入!");
return list;
}
}
list.add(book);
System.out.println("添加成功!");
return list;
}

/*
* 查詢
* */
public static void query(List<Book> list) {
System.out.println("編號\t書名");
for (Book b : list) {
System.out.println(b.getbId() + "\t" + b.getbName());
}
}

/*
* 修改
* */
public static void update(List<Book> list) {
query(list);
Scanner sc = new Scanner(System.in); // 鍵盤輸入的對象
System.out.print("請輸入編號:");
String s = sc.next();
Integer id = null;
for (int i = 0; i < list.size(); i++) {
id = list.get(i).getbId().equals(s) ? i : null;
}
if (id == null) {
System.out.println("輸入的編號不存在,請重新選擇!");
return;
}
System.out.print("請輸入新的書名:");
String newName = sc.next();
list.get(id).setbName(newName);
System.out.print("修改成功!");
}

/*
* 刪除
* */
public static void del(List<Book> list) {
query(list);
Scanner sc = new Scanner(System.in); // 鍵盤輸入的對象
System.out.print("請輸入編號:");
String s = sc.next();
for (int i = 0; i < list.size(); i++) {
if (list.get(i).getbId().equals(s)) {
list.remove(i);
return;
}

}
System.out.println("輸入的編號不存在,請重新選擇!");
}

}

/*
* 測試*/
class Test {
public static void main(String[] args) {
List<Book> bookList = new ArrayList<>(); // 存放所有圖書的列表
bookList.add(new Book("1", "Java 基礎")); // 圖書的列表添加一本圖書
System.out.print("歡迎進入圖書管理系統,");
boolean b = true;
while (b) {
System.out.print("請選擇:\n1.增加\n2.查詢\n3.修改\n4.刪除\n5.退出\n(輸入序號):");
Scanner sn = new Scanner(System.in); // 鍵盤輸入的對象
String select = sn.next();
switch (select) {
case "1":
System.out.println("您選擇了增加");

Book.add(bookList);
break;
case "2":
System.out.println("您選擇了查詢:");
Book.query(bookList);
break;
case "3":
System.out.println("您選擇了修改");
Book.update(bookList);
break;
case "4":
System.out.println("您選擇了刪除");
Book.del(bookList);
break;
case "5":
System.out.println("您選擇了退出");
b = false;
System.out.println("退出程序!");
break;
default:
System.out.println("輸入錯誤的序號,請重新輸入");
break;
}
}

}
}

㈧ Java編寫圖書管理系統,使用XML存儲

importjava.io.File;
importjava.io.FileOutputStream;
importjava.util.ArrayList;
importjava.util.List;
importjava.util.Scanner;
importorg.dom4j.Document;
importorg.dom4j.DocumentHelper;
importorg.dom4j.Element;
importorg.dom4j.io.OutputFormat;
importorg.dom4j.io.SAXReader;
importorg.dom4j.io.XMLWriter;

publicclassBook{

privateintno;
privateStringname;
privatedoublevalue;

publicBook(){
}

publicBook(intno,Stringname,doublevalue){
this.no=no;
this.name=name;
this.value=value;
}

publicdoublegetValue(){
returnvalue;
}

publicvoidsetValue(doublevalue){
this.value=value;
}

publicStringgetName(){
returnname;
}

publicvoidsetName(Stringname){
this.name=name;
}

publicintgetNo(){
returnno;
}

publicvoidsetNo(intno){
this.no=no;
}
}

classBookList{

privateList<Book>bookList;

publicBookList(){
bookList=readXML();
}

publiclonggetCount(){
returnbookList.size();
}

publicList<Book>getBookList(){
returnbookList;
}

publicvoidsetBookList(List<Book>bookList){
this.bookList=bookList;
}

publicvoidadd(Bookbook){
bookList.add(book);
}

publicbooleandelete(Stringname){
Bookbook=query(name);
returnbookList.remove(book);
}

publicvoipdate(BookbookBefore,BookbookAfter){
bookList.remove(bookBefore);
add(bookAfter);
}

publicBookquery(Stringname){
Booktemp=null;
for(Bookbook:bookList){
if(book.getName().equals(name)){
temp=book;
}
}
returntemp;
}

(Bookbook){
try{
Filefile=newFile("D:\book.xml");
Documentdocument=null;
Elementroot=null;
if(!file.exists()){
//新建student.xml文件並新增內容
document=DocumentHelper.createDocument();
root=document.addElement("Books");//添加根節點
}else{
SAXReadersaxReader=newSAXReader();
document=saxReader.read(file);
root=document.getRootElement();//獲得根節點
}
ElementsecondRoot=root.addElement("Book");//二級節點
//為二級節點添加屬性,屬性值為對應屬性的值
secondRoot.addElement("no").setText(book.getNo()+"");
secondRoot.addElement("name").setText(book.getName()+"");
secondRoot.addElement("value").setText(book.getValue()+"");

OutputFormatformat=OutputFormat.createPrettyPrint();
format.setEncoding("GBK");
XMLWriterwriter=newXMLWriter(newFileOutputStream("D:\book.xml"),format);
writer.write(document);
writer.close();
document.clearContent();
}catch(Exceptione){
e.printStackTrace();
}
}

publicsynchronizedList<Book>readXML(){
List<Book>list=newArrayList<Book>();//創建list集合
Filefile=null;
try{
file=newFile("D:\book.xml");//讀取文件
if(file.exists()){
SAXReadersaxReader=newSAXReader();
Documentdocument=saxReader.read(file);
ListnodeList=document.selectNodes("Books/Book");
for(inti=0;i<nodeList.size();i++){
Elementel=(Element)nodeList.get(i);
Bookbook=newBook();
book.setNo(Integer.parseInt(el.elementText("no")));
book.setName(el.elementText("name"));
book.setValue(Double.parseDouble(el.elementText("value")));
list.add(book);
}
}
}catch(Exceptione){
e.printStackTrace();
}
returnlist;
}
}

classTest{

publicstaticvoidmain(Stringargs[]){
BookListbl=newBookList();
booleanbBreak=true;
while(bBreak){
System.out.println("請輸入操作代碼:");
System.out.println("1:添加2:刪除3:修改4:查詢5:書籍統計6:退出");
Scannersc=newScanner(System.in);
intcode=sc.nextInt();
if(code==1){
System.out.println("請輸入編號");
intno=sc.nextInt();
System.out.println("請輸入書名");
Stringname=sc.next();
System.out.println("請輸入售價");
doublevalue=sc.nextDouble();
Bookbook=newBook(no,name,value);
bl.add(book);
bl.writeXmlDocument(book);
}elseif(code==2){
System.out.println("請輸入要刪除的書籍名");
Stringname=sc.next();
if(bl.delete(name)){
System.out.println("刪除成功");
}else{
System.out.println("書籍不存在");
}
}elseif(code==3){
System.out.println("請輸入要修改的書籍名");
Stringname=sc.next();
BookbookBefore=bl.query(name);

System.out.println("請輸入新的編號");
intnewNo=sc.nextInt();
System.out.println("請輸入新的書名");
StringnewName=sc.next();
System.out.println("請輸入新的售價");
doublevalue=sc.nextDouble();
BookbookAfter=newBook(newNo,newName,value);
bl.update(bookBefore,bookAfter);
}elseif(code==4){
System.out.println("請輸入要查詢的書籍名");
Stringname=sc.next();
Bookbook=bl.query(name);
System.out.println("編號:"+book.getNo()+"書名:"+book.getName()+"售價:"+book.getValue());
}elseif(code==5){
List<Book>list=bl.getBookList();
System.out.println("總書籍數:"+bl.getCount());
for(Bookbook:list){
System.out.println("編號:"+book.getNo()+"書名:"+book.getName()+"售價:"+book.getValue());
}
}elseif(code==6){
bBreak=false;
}
}
}
}

jar 包 dom4j.jar jaxen-1.1.4.jar

熱點內容
119濃度的鹽酸怎麼配置 發布:2024-04-20 06:23:38 瀏覽:119
資料庫pf 發布:2024-04-20 05:57:36 瀏覽:393
c語言編譯出現連接錯誤 發布:2024-04-20 05:42:18 瀏覽:198
湖北戴爾伺服器維修系統雲主機 發布:2024-04-20 05:36:47 瀏覽:62
android上傳數據 發布:2024-04-20 05:36:43 瀏覽:142
python替換文本內容 發布:2024-04-20 05:21:22 瀏覽:899
urllib3源碼 發布:2024-04-20 05:11:23 瀏覽:34
如何通過運行打開伺服器文件 發布:2024-04-20 00:06:50 瀏覽:671
電腦百度網盤怎麼上傳 發布:2024-04-19 23:49:15 瀏覽:417
陸放四驅買哪個配置 發布:2024-04-19 23:49:08 瀏覽:407