Commit b1ca649d authored by msingh's avatar msingh

Changed by Manish on 06/10/16


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@103595 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 4f6855af
...@@ -86,6 +86,8 @@ public class CreateRCPXML ...@@ -86,6 +86,8 @@ public class CreateRCPXML
String lineStr = null; String lineStr = null;
System.out.println("Test the files--------------------"); System.out.println("Test the files--------------------");
String fileName = winName.substring( 2 ) + ( formNo.equalsIgnoreCase( "1" ) ? "21" : "1" + formNo ); String fileName = winName.substring( 2 ) + ( formNo.equalsIgnoreCase( "1" ) ? "21" : "1" + formNo );
// Changed by Manish on 15/09/16 as per Pragyan Sir for wildfly[start]
//BufferedReader br = new BufferedReader( new FileReader( filePath + fileName + ".sql" ) ); //BufferedReader br = new BufferedReader( new FileReader( filePath + fileName + ".sql" ) );
fileName = filePath + fileName + ".sql"; fileName = filePath + fileName + ".sql";
...@@ -93,6 +95,7 @@ public class CreateRCPXML ...@@ -93,6 +95,7 @@ public class CreateRCPXML
FileInputStream fin = new FileInputStream( fileName ); FileInputStream fin = new FileInputStream( fileName );
BufferedReader br = new BufferedReader( new InputStreamReader( fin ) ); BufferedReader br = new BufferedReader( new InputStreamReader( fin ) );
// Changed by Manish on 15/09/16 [end]
while( ( lineStr = br.readLine() ) != null ) while( ( lineStr = br.readLine() ) != null )
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment