반응형

파일형식 따질때
list[i].endsWith(".xml") 이걸활용하자

                        if(list[i].endsWith(".xml"))
                        {
                         map.put("FILE_NAME",list[i]);
                         map.put("LAST_MODIFIED", new Date(file.lastModified()));
                         fileList.add(map);
                        }

참고: http://stackoverflow.com/questions/1241984/need-filedialog-with-a-file-type-filter-in-java
반응형
반응형
출처: http://isecurity.textcube.com/12

SELECT
 
 ,data.name
 ,ts.contents
 ,extent_management
 ,data.Mbytes "SPACE(MB)"
 ,free.free   "FREE(MB)"
 ,trunc((data.Mbytes-free.free)/data.Mbytes*100,2) "Used(%)"
( select
     tablespace_name name
    ,trunc(sum(bytes/1024/1024))
   from dba_data_files
         group by tablespace_name
     ) data,
  ( select
      free.tablespace_name
     ,trunc(sum(free.bytes)/1024/1024,1)
   from dba_free_space free
  group by free.tablespace_name
  )
dba_tablespaces ts
WHERE data.name = free.tablespace_name
  AND data.name =
;
반응형
반응형



IOException while loading persisted sessions: java.io.EOFException

발생이유: 톰캣은 persist session을 저장 할 수 있는데 이러한 작업이 실패했을 때 발생하는 것이다.
해결방법: Work Directory에서 "session.ser" 파일을 찾아서 삭제하고 다시 실행시키면 해결 된다.
(하지만 문제가 발생할 수 있으므로  "session.ser" 를 다른 폴더에 넣고 작업한다. )

persist session은? 톰캣을 shutdown, restart 할때 생성이 되고, start는 삭제된다.
".SER"은? SERIALIZED OBJECT FILE이다.

출처: http://planmaster.tistory.com/97

반응형

+ Recent posts