import java.io.*; import java.util.*; public class A { public static void main(String[] args) throws IOException{ FileInputStream fin = new FileInputStream(“a.txt”); BufferedReader in = …
- Category Archives JAVA
-
-
[개발팁] Spring + Quartz에서 파라미터를 가져오는 방법
일전에 예약작업을 실행하는 몇가지 방법에 대해 살펴봤는데여.. Spring + Quartz를 이용할때 사용자 파라미터를 Job 설정파일에 등록하고 실행시 이를 가져올 수 있습니다.. 먼저 Job 설정파일에 아래와 같이 사용자 파라미터를 추가하고 <bean id=”MyJob” class=”org.springframewor…
-
[개발팁] Spring + Quartz에서 작업의 동시실행을 막는 방법
예약작업이 흔히 DB나 파일을 다루다보니 작업이 한번에 하나씩만 실행되어야할때가 많습니다.. 예를 들어 디렉토리를 폴링하는 경우 선행 작업이 끝나지 않은 상태에서 다음 작업이 실행된다면 하나의 파일을 동시에 두개의 작업이 처리할 지도 모르니까요.. 스프링 스케쥴링 문서를 보면 “MethodInvokingJobDetailFactoryBean…
-
reading text file with utf-8 encoding using java
CASE 1. PrintStream out =newPrintStream(System.out,true,”UTF-8″); out.println(str); CASE 2. import java.io.BufferedReader;import java.io.File;import java.io.FileInputStream;import java.io.IOException;…
-
Reading a UTF-8 Encoded File
public static String parseTemplate(String templatePath) { File aFile = new File(templatePath); InputStreamReader reader = null; String template; StringBuffer temp = new StringBuffer(); int counter = 0…
-
한 WAS 서버에서 UTF-8 과 EUC-KR 둘다 지원하기..
한 웹서버에 UTF-8과 EUC-KR 을 같이 사용할 수 있는 TIP이 있긴 합니다…실제로 사용하고 있으나, 테스트는 꼭 해보세요.. 사용환경은 리눅스(CENTOS)+APACH+TOMCAT+SPRING2.5 web.xml 에서 필터를 추가해주는데요 UTF-8용과 EUC-KR 둘다 필터를 추가해줍니다. <filter> <displa…
-
JDBC Connection Pool Timeout Errors
If the database server times out a connection, the connection pool on Tomcat side would not be aware of its disconnection. If the database server times out a connection, the connection pool on Tomcat…
-
Tomcat MySQL Connection – Using JDBC to Connect Tomcat to MySQL
Tomcat MySQL Connection – Using JDBC to Connect Tomcat to MySQL Stumped by Tomcat JDBC connections? Can’t get your head around MySQL drivers, connection pools, and JNDI resources? This art…
-
Tomcat JDBC Connection Pool configuration for production and development
Tomcat JDBC Connection Pool configuration for production and development As mentioned in the post Install Eclipse Kepler 64 bit on Windows 7 64 bit, Podcastpedia.org uses Apache Tomcat 7 as applicatio…
-
Simple Spring Quartz Web App with Maven and Eclipse
Simple Spring Quartz Web App with Maven and Eclipse 1. Create a Maven Web App project with Eclipse File -> New -> Project -> Other -> Maven Project -> Next -> Next -> You should b…