InputStream is = (InputStream) rows[i].getInputStream(fileDS.indexOfColumn("filePath"));
에서
fileDS.indexOfColumn("filePath)) 를 따로 분리해서 하세요
예)
int index_file_path = fileDS.indexOfColumn("filePath"));
....
InputStream is = (InputStream) rows[i].getInputStream(index_file_path);
....
>게시판을 이용해 주셔서 감사합니다.
>다음양식에 맞게 입력해주세요.
>
>* 고객시스템명 : Neo할인점
>* GAUCE 버전 : 3.0
>* WAS 종류(WebLogic 등등) : WebLogic
>* DB 종류 : 오라클
>* 문의 유형(질문/요청/참조) : 질문
>* 내용 :
>
>안녕하세요?
>InputFile컴포넌트를 이용한 FileUpload문의 입니다.
>매우 급해서 이렇게 글을 남깁니다.
>
>dataset의 해더
>str_header = "checkbox:STRING(1),"+
> "requestId:STRING(20)," +
> "fileName:STRING(200),"+
> "filePath:url";
>gds_file.SetDataHeader(str_header);
>
>업로드하고자 하는 화일path의 dataSet의 해더를 url형태로 했습니다.
>String타입이면 아래를 실행할 때 이런 에러가 납니다.
>java.io.IOException: Column value of specified index[3] can not be casted to InputStream. Check out the column type!
>
>-서버단 소스-
>InputStream is = (InputStream) rows[i].getInputStream(fileDS.indexOfColumn("filePath"));
>
>그래서, filePath:URL로 했습니다만....
>그런데, 어떨 땐 '데이터 로딩시 포맷에 에러가 있습니다'라는 메세지가 tr component의 onFaile이벤트에 나타납니다.
>
>어떨 땐 제대로 처리가 되고 어떨 땐 에러가 나고 해서 문의드립니다...
>
>
>
>
>
>