Исключение в потоке «main» org.apache.http.conn.HttpHostConnectException: подключиться к // не удалось: время ожидания подключения: подключение

#java #apache #servlets

#java #apache #сервлеты

Вопрос:

я так устал, что перепробовал все, но это не работает, вот моя проблема, я пытаюсь отправить несколько файлов с одного компьютера на другой, идея состоит в том, чтобы создать сервлет на целевом компьютере, запустить его на сервере и ждать, пока будут подключены какие-либо клиенты, клиенти код сервлета отлично работает в типе локальной сети, но когда дело доходит до типа сети wan, я получаю это исключение

Исключение в потоке «main» org.apache.http.conn.HttpHostConnectException: подключиться к 192.168.1.12: 8080 [/ 192.168.1.12] сбой: время ожидания соединения: подключение

это последовательно клиент и код сервлета

 import java.io.File;

    import org.apache.http.HttpEntity;
    import org.apache.http.client.methods.CloseableHttpResponse;
    import org.apache.http.client.methods.HttpPost;
    import org.apache.http.entity.mime.MultipartEntityBuilder;
    import org.apache.http.entity.mime.content.FileBody;
    import org.apache.http.impl.client.CloseableHttpClient;
    import org.apache.http.impl.client.HttpClients;
    import org.apache.http.util.EntityUtils;

    public class UploadClient
    {

public static void main(String[] args) throws Exception 
{
    String test="C:/Users/Soufiane/Desktop/Dossier/";
    if (test.equalsIgnoreCase("")) 
    {
        System.out.println("Files path not given");
        System.exit(1);
    }

    CloseableHttpClient httpclient = HttpClients.createDefault();
    try
    {

          // On cree une connection avec la servlet qui va recevoir les fichiers
      HttpPost httppost = new HttpPost("http://192.168.1.12:8080/soufiane/haha");

   MultipartEntityBuilder multipartEntityBuilder = MultipartEntityBuilder.create();
   FileBody bin;

   // le nom du chemin de repertoire contenant les fichiers à tranmettre doit s   terminer par un "". 
        if(test.endsWith("/"))
        {
            File file = new File(test);
            String[] files = file.list();
            for(int i=0;i<files.length;i  )
            {
                bin = new FileBody(new File(test   files[i]));
                multipartEntityBuilder.addPart("bin_" i, bin);
            }
        }
        // si le nom du chemin de repertoire contenant les fichiers à tranmettre ne se terminer par un "" alors on 
        // considere que c'est un nom qui correspond à un fichier à transmettre seul.
        else
        {
            bin = new FileBody(new File(test));
            multipartEntityBuilder.addPart("bin", bin);
        }

        HttpEntity reqEntity = multipartEntityBuilder.build();
        httppost.setEntity(reqEntity);

        System.out.println("executing request "   httppost.getRequestLine());

        CloseableHttpResponse response = httpclient.execute(httppost);

        try {
                System.out.println("----------------------------------------");
                System.out.println(response.getStatusLine());
                HttpEntity resEntity = response.getEntity();
                if (resEntity != null) {
                    System.out.println("Response content length: "
                              resEntity.getContentLength());
                }
                System.out.println("Response result: " EntityUtils.toString(resEntity));

                //  EntityUtils.consume(resEntity);

        }
        finally 
        {
            response.close();
        }

        } 
        finally 
        {
         httpclient.close();
        }
       }
      }
  

и это код сервлета

                 import javax.servlet.http.HttpServlet;
                import java.io.File;
                 import java.io.IOException;
                  import java.io.PrintWriter;
              import java.util.Iterator;
             import java.util.List;
                   import javax.servlet.ServletException;
             import javax.servlet.http.HttpServletRequest;
             import javax.servlet.http.HttpServletResponse;
             import org.apache.commons.fileupload.FileItem;
             import org.apache.commons.fileupload.FileItemFactory;
              import org.apache.commons.fileupload.FileUploadException;
             import org.apache.commons.fileupload.disk.DiskFileItemFactory;
                import org.apache.commons.fileupload.servlet.ServletFileUpload;


    public class UploadServlet extends HttpServlet
    {
/**
 * 
 */
private static final long serialVersionUID = 1L;
      public UploadServlet() 
     {
    super();
}

/**
 * Destruction of the servlet. <br>
 */


 /**
 * The doGet method of the servlet. <br>
 *
 * This method is called when a form has its tag value method equals to get.
 * 
 * @param request the request send by the client to the server
 * @param response the response send by the server to the client
 * @throws ServletException if an error occurred
 * @throws IOException if an error occurred
 */

public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
{
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    out.println("<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">");
    out.println("<HTML>");
    out.println("<HEAD><TITLE>A Servlet</TITLE></HEAD>");
    out.println("<BODY>");
    out.print("This is ");
    out.print(this.getClass());
    out.println(", using the GET method");
    out.println("  </BODY>");
    out.println("</HTML>");
    out.flush();
    out.close(); 
}

/*
 * The doPost method of the servlet. <br>

 * This method is called when a form has its tag value method equals to post.

 * @param request the request send by the client to the server.
 * @param response the response send by the server to the client.
 * @throws ServletException if an error occurred
 * @throws IOException if an error occurred
 */


public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
{
    FileItemFactory factory = new DiskFileItemFactory();
    ServletFileUpload upload = new ServletFileUpload(factory);
    upload.setSizeMax(1000000000);
    String filename="";
    String responseText = "";
    List<FileItem> fileItems;
    try 
    {
        fileItems = upload.parseRequest(request);
        // Process the uploaded items
        @SuppressWarnings("rawtypes")
        Iterator iter = fileItems.iterator();
        while (iter.hasNext())
        {
            FileItem item = (FileItem) iter.next();
            filename = item.getName();
            File file = new File("C:\Users\Soufiane\Desktop" filename);
            item.write(file);
       responseText = responseText "n" "uploading file " filename " succeed";
         }
    } 
    catch (FileUploadException e) 
    {
        e.printStackTrace();
    } 
    catch (Exception e)
    {
        e.printStackTrace();
    } 
    finally 
    {
        if(responseText.isEmpty())
            responseText = "uploading files failed";
    }
    response.setContentType("text/html");
    response.setContentLength(responseText.length());
    PrintWriter out = response.getWriter();
    out.print(responseText);        
    out.flush();
    out.close();
}

/*
 * Initialization of the servlet. <br>
 *
 * @throws ServletException if an error occurs
 *
 *
 *
/*
 * Initialization of the servlet. <br>
 *
 * @throws ServletException if an error occurs
 */
    }

        i have an exame about this next monday, so plz help me
  

Ответ №1:

Возможно, вы неправильно поняли, как работают сетевые адреса.

192.168.1.12: 8080 — это адрес из пула адресов частной сети. Вы должны использовать свой внешний адрес (может быть получен, например http://ipaddress.com /). Но не все провайдеры предоставляют внешний адрес (называемый также общедоступным IP).

Ссылки

http://en.wikipedia.org/wiki/Private_network