• 大小: 1.56MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-02
  • 语言: Java
  • 标签: Servlet+JSP  

资源简介

基于Servlet+JSP实现的图书管理系统,Web课程设计用得上,良心资源

资源截图

代码片段和文件信息

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.Socket;
import java.net.UnknownHostException;

public class Test {
    public static void main(String[] args) throws IOException {

        Socket echoSocket = null;
        PrintWriter out = null;
        BufferedReader in = null;

        try {
            echoSocket = new Socket(“127.0.0.1“ 7);
            out = new PrintWriter(echoSocket.getOutputStream() true);
            in = new BufferedReader(new InputStreamReader(echoSocket.getInputStream()));
        } catch (UnknownHostException e) {
            System.err.println(“Don‘t know about host: taranis.“);
            System.exit(1);
        } catch (IOException e) {
            System.err.println(“Couldn‘t get I/O for “ + “the connection to: taranis.“);
            System.exit(1);
        }

        BufferedReader stdIn = new BufferedReader(new InputStreamReader(System.in));
        String userInput;

        while ((userInput = stdIn.readLine()) != null) {
            out.println(userInput);
            System.out.println(“echo: “ + in.readLine());
        }

        out.close();
        in.close();
        stdIn.close();
        echoSocket.close();
    }

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-12-07 21:23  Database\
     文件       13785  2012-06-26 15:38  Database\db_library.sql
     目录           0  2018-12-07 21:23  library\
     文件         841  2012-06-18 14:10  library\.classpath
     文件        1040  2012-06-18 14:10  library\.project
     目录           0  2018-12-07 21:23  library\.settings\
     文件         503  2012-06-18 14:10  library\.settings\.jsdtscope
     文件         364  2012-06-18 14:10  library\.settings\org.eclipse.jdt.core.prefs
     文件         475  2012-06-18 14:10  library\.settings\org.eclipse.wst.common.component
     文件         345  2012-06-18 14:10  library\.settings\org.eclipse.wst.common.project.facet.core.xml
     文件          49  2012-06-18 14:10  library\.settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2012-06-18 14:10  library\.settings\org.eclipse.wst.jsdt.ui.superType.name
     目录           0  2018-12-07 21:23  library\WebContent\
     目录           0  2018-12-07 21:23  library\WebContent\CSS\
     文件        2747  2012-06-19 16:10  library\WebContent\CSS\style.css
     目录           0  2018-12-07 21:23  library\WebContent\Images\
     文件        6768  2012-06-18 14:34  library\WebContent\Images\borrowBackRenew.gif
     文件        6761  2012-06-18 14:34  library\WebContent\Images\borrowBackRenew_back.gif
     文件        6823  2012-06-18 14:34  library\WebContent\Images\borrowBackRenew_r.gif
     文件        7379  2012-06-18 14:34  library\WebContent\Images\borrow_if.gif
     文件          96  2012-06-18 14:34  library\WebContent\Images\copyright_t.gif
     文件        4051  2012-06-18 14:34  library\WebContent\Images\error.jpg
     文件        1471  2012-06-18 14:34  library\WebContent\Images\error_b.gif
     文件         354  2012-06-18 14:34  library\WebContent\Images\item_out.gif
     文件         354  2012-06-18 14:34  library\WebContent\Images\item_over.gif
     文件      303552  2012-06-18 14:34  library\WebContent\Images\login.jpg
     文件        8374  2012-06-18 14:34  library\WebContent\Images\main_booksort.gif
     文件         141  2012-06-18 14:34  library\WebContent\Images\main_booksort_1.gif
     文件         701  2012-06-18 14:34  library\WebContent\Images\main_booksort_2.gif
     文件        1050  2012-06-18 14:34  library\WebContent\Images\main_readersort_1.gif
     文件         634  2012-06-18 14:34  library\WebContent\Images\more.GIF
............此处省略147个文件信息

评论

共有 条评论