前スレ 【Java/C/他】統合開発環境Eclipse GM7
■ このスレッドは過去ログ倉庫に格納されています
0653デフォルトの名無しさん
NGNGimport java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* @author user
*
* To change this generated comment edit the template variable "typecomment":
* Window>Preferences>Java>Templates.
* To enable and disable the creation of type comments go to
* Window>Preferences>Java>Code Generation.
*/
public class Hellosrv extends HttpServlet {
public void doPost(HttpServletRequest arg0, HttpServletResponse arg1)
throws ServletException, IOException {
arg1.getWriter().println("Hello!???");
System.out.println("testest!");
}
}
■ このスレッドは過去ログ倉庫に格納されています