java車輛管理系統(tǒng)_第1頁(yè)
java車輛管理系統(tǒng)_第2頁(yè)
java車輛管理系統(tǒng)_第3頁(yè)
java車輛管理系統(tǒng)_第4頁(yè)
java車輛管理系統(tǒng)_第5頁(yè)
已閱讀5頁(yè),還剩15頁(yè)未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

1、/ 車輛管理系統(tǒng)packagejavaapplication27;import javax.swing.*;import java.io.*;import java.awt.*;importimport java.util.*;importimport java.io. FileInputStream ;/3.4CarPicture 類 class CarPicture extends JPanel File imageFile;Toolkit tool;public CarPicture() tool=getToolkit(); publicvoid setImage( File image

2、File) this .imageFile=imageFile; repaint(); Override publicvoid paintComponent( Graphics g) super .paintComponent(g);int w=getBounds().width;int h=getBounds().height; if (imageFile!= null ) Imageimage=tool.getImage(imageFile.getAbsolutePath(); g.drawImage(image,0,0,w,h, this );/3.3Car 類class Carimpl

3、ements Serializable String number,name,discipling,grade,borth,sex;File imagePic; publicvoid setNumber( String number) this .number=number; public String getNumber() return number; publicvoid setName(String name) this .name=name; public String getName() return name; publicvoid setDiscipling( String d

4、iscipling) this .discipling=discipling; public String getDiscipling() return discipling; publicvoid setGrade( String grade) this .grade=grade; public String getGrade() return grade; publicvoid setBorth( String borth) this .borth=borth; public String getBorth() return borth; publicvoid setSex( String

5、 sex) this .sex=sex; public String getSex() return sex; publicvoid setImagePic( File image) imagePic=image; public File getImagePic() return imagePic;/3.5InputCar 類class InputCar extends JPanel implements ActionListener Car 車主 =null ;CarPicturepic;HashMap<String ,Car> 基本信息表=null ;JTextField 車牌

6、號(hào) , 姓名 , 購(gòu)車公司, 購(gòu)車時(shí)間;JButton 選擇照片;JComboBoXi次;JRadioButton 男 , 女 ;ButtonGroupgroup= null ;JButton 錄入 , 重置 ;FileInputStream inOne=null ;ObjectInputStream inTwo=null ;FileInputStream outOne=null ;ObjectOutputStream outTwo=null ;File systemFile,imagePic;public InputCar( File file)systemFile=file;pic= ne

7、wCarPicture();車牌號(hào) =newJTextField(5);姓名=newJTextField(5);檔次=newJComboBox();try FileReader inOne=newFileReader (" 專業(yè) .txt" ); BufferedReader inTwo=newBufferedReader (inOne); String s=null ;int i=0;while (s=inTwo.readLine()!= null )檔次 .addItem(s);inOne.close();inTwo.close();catch ( IOExceptio

8、n exp)檔次.addItem(" 高級(jí)" );檔次.addItem( " 中高級(jí)" );檔次.addItem(" 中級(jí)" );檔次.addItem( "中低級(jí)" );檔次.addItem(" 普通" );購(gòu)車公司=newJTextField(5);購(gòu)車時(shí)間=newJTextField(5);選擇照片=newJButton( "選擇" );group= newButtonGroup();男 =newJRadioButton( " 男 " , true )

9、;女 =newJRadioButton( " 女 " , true );group.add( 男 );group.add( 女 );錄入=newJButton( " 錄入" );重置=newJButton( " 重置" );錄入.addActionListener(this );選擇照片.addActionListener( this );重置.addActionListener(this );Box box1=Box.createHorizontalBox();box1.add( newJLabel( "車牌號(hào):"

10、; ,JLabel.CENTER);box1.add( 車牌號(hào) );Box box2=Box.createHorizontalBox();box2.add( newJLabel( "車主姓名:" ,JLabel.CENTER);box2.add( 姓名 );Box box3=Box.createHorizontalBox();box3.add( newJLabel( "車主性別:" ,JLabel.CENTER);box3.add( 男 );box3.add( 女 );Box box4=Box.createHorizontalBox();box4.add

11、( newJLabel( "車輛檔次:" ,JLabel.CENTER);box4.add( 檔次 );Box box5=Box.createHorizontalBox();box5.add( newJLabel( "購(gòu)車公司:" ,JLabel.CENTER);box5.add( 購(gòu)車公司);Box box6=Box.createHorizontalBox();box6.add( newJLabel( "購(gòu)車時(shí)間:" ,JLabel.CENTER);box6.add( 購(gòu)車時(shí)間);BoxboxH=Box.createVertical

12、Box();boxH.add(box1);boxH.add(box2);boxH.add(box3);boxH.add(box4);boxH.add(box5);boxH.add(box6);boxH.add(Box.createVerticalGlue();JPanelpicPanel= newJPanel();picPanel.setBackground( Color .green);picPanel.add( newJLabel( "選擇照片:" ,JLabel.CENTER);picPanel.add( 選擇照片);JPanelputButton= newJPane

13、l();putButton.add( 錄入);putButton.add( 重置);JPanelmessPanel= newJPanel();messPanel.add(boxH);messPanel.setBackground( Color .cyan);putButton.setBackground( Color .red);setLayout( newBorderLayout ();JSplitPanesplitV= newJSplitPane(JSplitPane.VERTICAL_SPLIT,picPanel,pic);JSplitPanesplitH= newJSplitPane(

14、JSplitPane.HORIZONTAL_SPLIT,messPanel,splitV);add(splitH, BorderLayout .CENTER);add(putButton, BorderLayout .SOUTH);validate();publicvoid actionPerformed( ActionEvent e) if (e.getSource()= 錄入 )String number="" ;number=車牌號(hào).getText();if (number.length()>0) try inOne=newFileInputStream (sy

15、stemFile); inTwo=newObjectInputStream (inOne);基本信息表=(HashMap<String ,Car>)inTwo.readObject();inOne.close();inTwo.close();catch ( Exception ee)if ( 基本信息表.containsKey(number)String warning= " 該生基本信息已存在,請(qǐng)到修改頁(yè)面修改!" ;JOptionPane.showMessageDialog( this ,warning, " 警告 " ,JOptionP

16、ane.WARNING_MESSAGE); else String m='基本信息將被錄入!"int ok=JOptionPane.showConfirmDialog( this ,m, " 確認(rèn)" ,JOptionPane.YES_NO_OPTION,JOptionPane.INFORMATION_MESSAGE);if (ok=JOptionPane.YES_OPTION)String name=S名.getText();String discipling=( String ) 檔次 .getSelectedItem();String grade= 購(gòu)

17、車公司.getText();String borth= 購(gòu)車時(shí)間.getText();String sex=null ;if ( 男 .isSelected() sex.getText();elsesex=<.getText();車主=newCar();車主.setNumber(number);車主.setName(name);車主.setDiscipling(discipling);車主.setGrade(grade);車主.setBorth(borth);車主.setSex(sex);車主.setImagePic(imagePic);try FileOutputStream outO

18、ne=newFileOutputStream (systemFile);outTwo=newObjectOutputStream (outOne);基本信息表.put(number, 車主 );outTwo.writeObject( 基本信息表);outTwo.close();outOne.close(); clearMess(); catch ( Exception ee) else String warning= " 必須要輸入學(xué)號(hào)!" ;JOptionPane.showMessageDialog( this ,warning, " 警告 " ,JO

19、ptionPane.WARNING_MESSAGE); elseif (e.getSource()= 選擇照片)JFileChooserchooser= newJFileChooser(); FileNameExtensionFilterfilter=newFileNameExtensionFilter("JPG&GIFImages", "jpg" , "gif" );chooser.setFileFilter(filter); int state=chooser.showOpenDialog( null );File cho

20、iceFile=chooser.getSelectedFile();if (choiceFile!= null &&state=JFileChooser.APPROVE_OPTION) 選擇照片.setText(choiceFile.getName();imagePic=choiceFile; pic.setImage(imagePic); pic.repaint(); elseif (e.getSource()= 重置 ) clearMess(); publicvoid clearMess() 車牌號(hào) .setText( null ); 姓名 .setText( null )

21、; 購(gòu)車公司.setText(null);購(gòu)車時(shí)間.setText(null);選擇照片.setText("選擇" );imagePic= null ;pic.setImage(imagePic); pic.repaint(); /3.6inquset 類 class Inquest extends JDialog implements ActionListener CarPicturepic;PrintJob print;Graphics g=null ;HashMap<String ,Car> 基本信息表;JTextField 車牌號(hào) , 姓名 , 檔次 ,

22、 購(gòu)車公司, 購(gòu)車時(shí)間;JRadioButton 男 , 女 ;JButton 查詢 , 打印文本及照片, 打印文本, 打印照片;ButtonGroupgroup= null ;FileInputStream inOne=null ;ObjectInputStream inTwo=null ;File systemFile= null ;JPanelmessPanel;Carstu;public Inquest( File file)setTitle( "查詢對(duì)話框" );setModal( false );systemFile=file;pic= newCarPictur

23、e();車牌號(hào)=newJTextField(6);查詢 =newJButton( " 查詢 " );車牌號(hào).addActionListener(this );查詢 .addActionListener( this );打印文本及照片=newJButton( " 打印文本及照片" );打印文本=newJButton( "打印文本");打印照片=newJButton( "打印照片");打印文本及照片.addActionListener( this );打印文本.addActionListener(this);打印照片.

24、addActionListener(this);打印文本及照片.setEnabled( false );打印文本.setEnabled( false);打印照片.setEnabled( false);姓名=newJTextField(5);姓名.setEditable( false);檔次=newJTextField(5);檔次.setEditable( false);購(gòu)車公司=newJTextField(5);購(gòu)車公司.setEditable( false);購(gòu)車時(shí)間=newJTextField(5);購(gòu)車時(shí)間.setEditable( false);男 =newJRadioButton(

25、" 男 " , false );女 =newJRadioButton( " 女 " , false );group= newButtonGroup();group.add( 男 );group.add( 女 );Boxbox1=Box.createHorizontalBox();box1.add( newJLabel( "車牌號(hào):" ,JLabel.CENTER); box1.add( 車牌號(hào) );box1.add( 查詢 );Boxbox2=Box.createHorizontalBox();box2.add( newJLabel(

26、 "車主姓名:" ,JLabel.CENTER);box2.add( 姓名 );Boxbox3=Box.createHorizontalBox();box3.add( newJLabel( "性別:" ,JLabel.CENTER);box3.add( 男 );box3.add( 女 );Boxbox4=Box.createHorizontalBox();box4.add( newJLabel( "檔次:" ,JLabel.CENTER);box4.add( 檔次 );Boxbox5=Box.createHorizontalBox()

27、;box5.add( newJLabel( "購(gòu)車公司:" ,JLabel.CENTER);box5.add( 購(gòu)車公司);Boxbox6=Box.createHorizontalBox();box6.add( newJLabel( "購(gòu)車時(shí)間:" ,JLabel.CENTER);box6.add( 購(gòu)車時(shí)間);BoxboxH=Box.createVerticalBox();boxH.add(box1);boxH.add(box2);boxH.add(box3);boxH.add(box4);boxH.add(box5);boxH.add(box6);m

28、essPanel=newJPanel();messPanel.add(boxH);JSplitPanesplitH= newJSplitPane(JSplitPane.HORIZONTAL_SPLIT,messPanel,pic);add(splitH, BorderLayout .CENTER);JPanelpSouth= newJPanel();pSouth.add( 打印文本及照片);pSouth.add( 打印文本);pSouth.add( 打印照片);add(pSouth, BorderLayout .SOUTH);validate();setVisible( false );set

29、Size(360,230);addWindowListener( newWindowAdapter ()Overridepublicvoid windowClosing( WindowEvente)setVisible( false ););publicvoid actionPerformed( ActionEvent e)if (e.getSource()= 查詢 |e.getSource()= 車牌號(hào) )String number="" ;number=車牌號(hào).getText();if (number.length()>0) try inOne=newFileIn

30、putStream (systemFile);inTwo=newObjectInputStream (inOne);基本信息表=(HashMap<String ,Car>)inTwo.readObject();inOne.close();inTwo.close();catch ( Exception ee)if ( 基本信息表.containsKey(number)stu= 基本信息表.get(number);姓名.setText(stu.getName();檔次.setText(stu.getDiscipling();購(gòu)車公司.setText(stu.getGrade();購(gòu)車時(shí)

31、間.setText(stu.getBorth();if (stu.getSex().equals( "男 " )男 .setSelected(true );else女 .setSelected(true );pic.setImage(stu.getImagePic();pic.repaint();打印文本及照片.setEnabled( true );打印文本.setEnabled( true );打印照片.setEnabled( true ); else 打印文本及照片.setEnabled( false );打印文本.setEnabled( false );打印照片.se

32、tEnabled( false );String warning= " 該車牌號(hào)不存在!" ;JOptionPane.showMessageDialog( this ,warning, " 警告 " ,JOptionPane.WARNING_MESSAGE); clearMess(); else 打印文本及照片.setEnabled( false );打印文本.setEnabled( false );打印照片.setEnabled( false );String warning= " 必須要輸入車牌號(hào)!" ;JOptionPane.s

33、howMessageDialog( this ,warning, " 警告 " , JOptionPane.WARNING_MESSAGE);elseif (e.getSource()= 打印文本及照片)try print=getToolkit().getPrintJob( newJFrame(), " 打印 " , newProperties (); g=print.getGraphics();g.translate(120,200);int w=messPanel.getBounds().width;messPanel.printAll(g);g.t

34、ranslate(w,0);pic.printAll(g);姓名 .setText(stu.getName();g.dispose();print.end();catch ( Exception exp)elseif (e.getSource()= 打印文本)try print=getToolkit().getPrintJob( newJFrame(), " 打印 " , newProperties (); g=print.getGraphics();g.translate(120,200);messPanel.printAll(g);g.dispose();print.e

35、nd();catch ( Exception exp)elseif (e.getSource()= 打印照片)try print=getToolkit().getPrintJob( newJFrame(), " 打印 " , newProperties (); g=print.getGraphics();int w=messPanel.getBounds().width;g.translate(120+w,200);pic.printAll(g);g.dispose();print.end();catch ( Exception exp) publicvoid clearM

36、ess()車牌號(hào) .setText( null );姓名 .setText( null );購(gòu)車公司.setText( null );購(gòu)車時(shí)間.setText( null );檔次 .setText( null );pic.setImage( null );pic.repaint();/3.8Delete 類class Delete extends JPanel implements ActionListener HashMap<String ,Car> 基本信息表=null ;JTextField 車牌號(hào) , 姓名 , 檔次 , 購(gòu)車公司, 購(gòu)車時(shí)間;JRadioButton 男

37、 , 女 ;JButton 刪除 ;ButtonGroupgroup= null ;FileInputStream inOne=null ;ObjectInputStream inTwo=null ;FileOutputStream outOne=null ;ObjectOutputStream outTwo=null ;File systemFile= null ;public Delete( File file)systemFile=file;車牌號(hào)=newJTextField(10);刪除 =newJButton( " 刪除 " );車牌號(hào).addActionList

38、ener(this );刪除 .addActionListener( this );姓名=newJTextField(10);姓名.setEditable( false);檔次=newJTextField(10);檔次.setEditable( false);購(gòu)車公司=newJTextField(10);購(gòu)車公司.setEditable( false);購(gòu)車時(shí)間=newJTextField(10);購(gòu)車時(shí)間.setEditable( false);男 =newJRadioButton( " 男 " , false );女 =newJRadioButton( " 女

39、 " , false );group= newButtonGroup();group.add( 男 );group.add( 女 );Boxbox1=Box.createHorizontalBox();box1.add( newJLabel( "輸入要?jiǎng)h除的車牌號(hào):",JLabel.CENTER);box1.add( 車牌號(hào) );box1.add( 刪除 );Boxbox2=Box.createHorizontalBox();box2.add( newJLabel( "車主姓名:" ,JLabel.CENTER);box2.add( 姓名 );

40、Boxbox3=Box.createHorizontalBox();box3.add( newJLabel( "性別: " ,JLabel.CENTER);box3.add( 男 );box3.add( 女 );Boxbox4=Box.createHorizontalBox();box4.add( newJLabel( "檔次: " ,JLabel.CENTER);box4.add( 檔次 );Boxbox5=Box.createHorizontalBox();box5.add( newJLabel( "購(gòu)車公司:" ,JLabel.

41、CENTER);box5.add( 購(gòu)車公司);Boxbox6=Box.createHorizontalBox();box6.add( newJLabel( "購(gòu)車時(shí)間:" ,JLabel.CENTER);box6.add( 購(gòu)車時(shí)間);BoxboxH=Box.createVerticalBox();boxH.add(box1);boxH.add(box2);boxH.add(box3);boxH.add(box4);boxH.add(box5);boxH.add(box6);boxH.add(Box.createVerticalGlue();JPanelpCenter=

42、newJPanel();pCenter.add(boxH);setLayout( newBorderLayout ();add(pCenter, BorderLayout .CENTER);validate();publicvoid actionPerformed( ActionEvent e)if (e.getSource()= 刪除 |e.getSource()= 車牌號(hào))String number="" ;number=車牌號(hào).getText();if (number.length()>0)try inOne=newFileInputStream (system

43、File);inTwo=newObjectInputStream (inOne);基本信息表=( HashMap)inTwo.readObject();inOne.close();inTwo.close();catch ( Exception ee)if ( 基本信息表.containsKey(number)Carstu=(Car) 基本信息表.get(number);姓名 .setText(stu.getName();檔次 .setText(stu.getDiscipling();購(gòu)車公司.setText(stu.getGrade();購(gòu)車時(shí)間.setText(stu.getBorth();

44、if (stu.getSex().equals( "男 " ) 男 .setSelected(true );else女 .setSelected(true );String m='確定要?jiǎng)h除該車牌號(hào)及全部信息嗎?"int ok=JOptionPane.showConfirmDialog( this ,m, " 確認(rèn)" ,JOptionPane.YES_NO_OPTION,JOptionPane.QUESTION_MESSAGE); if (ok=JOptionPane.YES_OPTION) 基本信息表.remove(number);t

45、ry outOne=newFileOutputStream (systemFile); outTwo=newObjectOutputStream (outOne); outTwo.writeObject( 基本信息表);outTwo.close(); outOne.close(); 車牌號(hào) .setText( null );姓名.setText( null );檔次.setText( null );購(gòu)車公司.setText( null );購(gòu)車時(shí)間.setText( null ); catch ( Exception ee) elseif (ok=JOptionPane.NO_OPTION)

46、車牌號(hào) .setText( null );姓名.setText( null );檔次.setText( null );購(gòu)車公司.setText( null );購(gòu)車時(shí)間.setText( null ); else String waring= "該車牌號(hào)不存在!" ;JOptionPane.showMessageDialog( this ,waring, "警告 " ,JOptionPane.WARNING_MESSAGE); 車牌號(hào) .setText( null ); else String waring= "該車牌號(hào)不存在!" ;

47、JOptionPane.showMessageDialog( this ,waring, "警告 " ,JOptionPane.WARNING_MESSAGE); /3.7ModifySituation 類class ModifySituation extends JPanel implements ActionListener CarPicturepic;HashMap<String ,Car> 基本信息表=null ;JTextField 車牌號(hào) , 姓名 , 購(gòu)車公司, 購(gòu)車時(shí)間;JComboBoXi次;JButton 選擇照片;JRadioButton

48、男 , 女 ;ButtonGroupgroup= null ;JButton 開始修改, 錄入修改, 重置 ;FileInputStream inOne=null ;ObjectInputStream inTwo=null ;FileOutputStream outOne=null ;ObjectOutputStream outTwo=null ;File systemFile,imagePic;JComboBoxoldMess;Carstu= null ;public ModifySituation( File file)systemFile=file;pic= newCarPicture(

49、);車牌號(hào) =newJTextField(6);姓名=newJTextField(6);檔次=newJComboBox();try FileReader inOne=newFileReader ( "檔次 .txt" );BufferedReader intwo= newBufferedReader (inOne);String s=null ;int i=0;while (s=inTwo.readLine()!= null )檔次 .addItem(s);inOne.close();inTwo.close();catch ( IOException exp)檔次 .add

50、Item( " 高級(jí) ");檔次.addItem( " 中高級(jí)" );檔次.addItem( " 中級(jí)" );檔次.addItem( "中低級(jí)" );檔次.addItem( " 普通" );購(gòu)車公司=newJTextField(6);購(gòu)車時(shí)間=newJTextField(6);選擇照片=newJButton( "選擇" );group= newButtonGroup();男 =newJRadioButton( " 男 " , true );女 =newJR

51、adioButton( " 女 " , false );group.add( 男 );group.add( 女 );oldMess= newJComboBox();開始修改=newJButton("開始修改");錄入修改=newJButton("錄入修改");錄入修改.setEnabled(false);選擇照片.setEnabled(false);重置 =newJButton( "重置" );車牌號(hào) .addActionListener( this );開始修改.addActionListener(this);錄

52、入修改.addActionListener(this);重置 .addActionListener( this );選擇照片.addActionListener(this);Boxbox1=Box.createHorizontalBox();box1.add( newJLabel( " 輸入要修改信息的車牌號(hào):",JLabel.CENTER);box1.add( 車牌號(hào) );box1.add( 開始修改);Boxbox2=Box.createHorizontalBox();box2.add( newJLabel( "( 新 ) 車主姓名:" ,JLabe

53、l.CENTER);box2.add( 姓名 );Boxbox3=Box.createHorizontalBox();box3.add( newJLabel( "( 新 ) 性別 :" ,JLabel.CENTER);box3.add( 男 );box3.add( 女 );Boxbox4=Box.createHorizontalBox();box4.add( newJLabel( "( 新 ) 檔次 :" ,JLabel.CENTER);box4.add( 檔次 );Boxbox5=Box.createHorizontalBox();box5.add(

54、newJLabel( "( 新 ) 購(gòu)車公司:" ,JLabel.CENTER);box5.add( 購(gòu)車公司);Boxbox6=Box.createHorizontalBox();box6.add( newJLabel( "( 新 ) 購(gòu)車時(shí)間:" ,JLabel.CENTER);box6.add( 購(gòu)車時(shí)間);Boxbox7=Box.createHorizontalBox();box7.add( newJLabel( " 車主已有的數(shù)據(jù):" ,JLabel.CENTER);box7.add(oldMess);BoxboxH=Box

55、.createVerticalBox();boxH.add(box1);boxH.add(box2);boxH.add(box3);boxH.add(box4);boxH.add(box5);boxH.add(box6);boxH.add(box7);boxH.add(Box.createVerticalGlue();JPanelpicPanel= newJPanel();picPanel.setBackground( Color .green);picPanel.add( newJLabel( "選擇照片:" ,JLabel.CENTER);picPanel.add( 選

56、擇照片);JPanelputBotton= newJPanel();putBotton.setBackground( Color .yellow);putBotton.add( 錄入修改);putBotton.add( 重置 );JPanelmessPanel= newJPanel();messPanel.setBackground( Color .pink);messPanel.add(boxH);setLayout( newBorderLayout ();JSplitPanesplitV= newJSplitPane(JSplitPane.VERTICAL_SPLIT,picPanel,p

57、ic);JSplitPanesplitH= newJSplitPane(JSplitPane.HORIZONTAL_SPLIT,messPanel,splitV);add(splitH, BorderLayout .CENTER);add(putBotton, BorderLayout .SOUTH);validate();publicvoid actionPerformed( ActionEvent e)if (e.getSource()= 開始修改|e.getSource()= 車牌號(hào) )oldMess.removeAllItems();String number="" ;imagePic= null ;number=車牌號(hào).getText();if (number.length()>0) try inOne= newFileInputStream (systemFile);inTwo= newObjectInputStream (inOne);基本信息表=(HashMap<String ,Car>)inTwo.re

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

最新文檔

評(píng)論

0/150

提交評(píng)論