자바 스크립트에서 서블릿으로 문자 보낼때~

sangwou의 이미지

최종목표 : 웹에디터를 만들기..

소스파일의 내용을 읽고 읽은 소스내용을 자바스크립트(fsave함수)를 이용해 서블릿으로 보내서 파일저장하려고 하는데요
읽는것까지는 잘되는데 소스내용을 서블릿으로 보내는것이 잘 안되네요..

alert를 이용해서 우선 서블릿으로 보낼내용을 확인해봤구요(소스내용이 alertd으로 잘찍힘)

encodeURI로 하면 소스내용전부가(소스내용길이 상관없이) 서블릿으로 잘 전송이 됩니다.. 하지만 %,&같은 특수문자가 생략이 되죠...
어쩔수 없이 encodeURIComponent해서 보내면 %,&포함이 되나... 소스내용길이에 제한을 받습니다 소스내용이 100라인이 넘어가면 400에러가 떠버리죠... Error during AJAX call. Please try again와 함꼐요 ㅠㅠ

하지만 웃긴게 100라인 이하면 잘 전송이 됩니다 ㅠㅠ

encodeURIComponent로 길이 제한없이 전송하는법 업을까요????

어떻게 해야 하나요ㅠㅠ

---------------------------------------------------------------------------------------------->

function fsave()
{
alert("저장하기");
var oEditor = FCKeditorAPI.GetInstance('FCKeditor1');

var s = oEditor.GetXHTML( true );
alert(s);

var sPrams = s;
var zz2 = encodeURIComponent(sPrams);

if(xmlhttp)

{
xmlhttp.open("GET","http://localhost:8080/editortesttesttest/showz.do?" + "id="+zz2,true);
xmlhttp.onreadystatechange = handleServerResponse2;
xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xmlhttp.send(null);
}
}

function handleServerResponse2()
{
if (xmlhttp.readyState == 4)
{ alert(xmlhttp.status);
if(xmlhttp.status == 200)
{
alert("성공");
}
else
{
alert("Error during AJAX call. Please try again");
}
}
}

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

package com.test;

import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
import java.net.URLDecoder;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class showz extends HttpServlet {
private static final long serialVersionUID = 1L;

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
{
doPost(request,response);
}

protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
{

System.out.println("--------------- 저장호출~ ---------------");


response.setContentType("text/html;charset=euc-kr");
request.setCharacterEncoding("UTF-8");

String content = request.getParameter("id");
System.out.println(content);

}

}

-------------------------------------------------------------------------------------------------------------------
참고로 post방식으로 했을때 아래와같이 수정하고 넘기니... 200으로 떠서 전송은 잘됬는데 서블릿에서는 null로만 찍히네요 ㅠㅠ

var sPrams = "id=" + s;
var zz2 = encodeURIComponent(sPrams);
if(xmlhttp)

{
xmlhttp.open("GET","http://localhost:8080/editortesttesttest/showz.do?",false);
xmlhttp.onreadystatechange = handleServerResponse2;
xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xmlhttp.send(zz2 );
}
}

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.