Jump to content

Recommended Posts

Posted

@Jailer and @
[b] [color=#334466][url="http://www.andhrafriends.com/user/6642-sinnababu-chavatabbayi/"]SinnaBabu_Chavatabbayi[/url] [/color][/b]

any thoughts on how to merge two pdf's ?
Successfully creating, editing,deleting n doing other fun pdf stuff with iText Pdf lib... stumbled on thoughts for merging... any idea to start with is helpful .. thank you..

Posted

[quote name='innovative' timestamp='1380147266' post='1304306414']
@Jailer and @
[b] [color=#334466][url="http://www.andhrafriends.com/user/6642-sinnababu-chavatabbayi/"]SinnaBabu_Chavatabbayi[/url] [/color][/b]

any thoughts on how to merge two pdf's ?
Successfully creating, editing,deleting n doing other fun pdf stuff with iText Pdf lib... stumbled on thoughts for merging... any idea to start with is helpful .. thank you..
[/quote]
sabashh [img]https://lh3.googleusercontent.com/-Q4W4gLTIknk/UcO4LboibfI/AAAAAAAAAN0/qHxoXU6CzTk/s320/shahbash-o.gif[/img]

Posted

[quote name='HAPPYNESS' timestamp='1380147610' post='1304306443']
sabashh [img]https://lh3.googleusercontent.com/-Q4W4gLTIknk/UcO4LboibfI/AAAAAAAAAN0/qHxoXU6CzTk/s320/shahbash-o.gif[/img]
[/quote]

evaru nuvvu :o

Posted

[quote name='innovative' timestamp='1380147672' post='1304306451']

evaru nuvvu :o
[/quote]

Aa GIF lo veneka janam lo arustunna vallalo okadu..[img]http://www.andhrafriends.com/uploads/gallery/album_15/gallery_24383_15_149753.gif[/img]

Posted

[quote name='Brahmanandam_AFDB' timestamp='1380147875' post='1304306468']

Aa GIF lo veneka janam lo arustunna vallalo okadu..[img]http://www.andhrafriends.com/uploads/gallery/album_15/gallery_24383_15_149753.gif[/img]
[/quote]

ayundochu :D

Posted

[quote name='HAPPYNESS' timestamp='1380147610' post='1304306443']
sabashh [img]https://lh3.googleusercontent.com/-Q4W4gLTIknk/UcO4LboibfI/AAAAAAAAAN0/qHxoXU6CzTk/s320/shahbash-o.gif[/img]
[/quote]


mayyaa...ida kuda pamming aah.... CITI_c$y CITI_c$y ....
ela nadustundhi job.. F@#da

Posted

[quote name='innovative' timestamp='1380147266' post='1304306414']
@Jailer and @
[b] [color=#334466][url="http://www.andhrafriends.com/user/6642-sinnababu-chavatabbayi/"]SinnaBabu_Chavatabbayi[/url] [/color][/b]

any thoughts on how to merge two pdf's ?
Successfully creating, editing,deleting n doing other fun pdf stuff with iText Pdf lib... stumbled on thoughts for merging... any idea to start with is helpful .. thank you..
[/quote]
idi work avvaleda?

[url="http://www.mindfiresolutions.com/Java-Merging-multiple-PDFs-into-a-single-PDF-using-iText-671.php"]http://www.mindfiresolutions.com/Java-Merging-multiple-PDFs-into-a-single-PDF-using-iText-671.php[/url]

if not try this

[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]import java.io.FileOutputStream;[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]import java.io.IOException;[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]import com.lowagie.text.pdf.PdfCopyFields;[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]import com.lowagie.text.pdf.PdfReader;[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]public class Concatenate2PDF {[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]public static void main(String[] args)throws Exception {[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]System.out.println("Concatenate Two PDF"); [/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]PdfReader reader1 = new PdfReader("1PDF.pdf");[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]PdfReader reader2 = new PdfReader("2PDF.pdf");[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]PdfCopyFields copy = [/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]new PdfCopyFields(new FileOutputStream("concatenatedPDF.pdf"));[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]copy.addDocument(reader1);[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]copy.addDocument(reader2);[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]copy.close();[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]}[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]}[/background][/size][/font][/color]

Posted

[quote name='cherlapalli_jailer' timestamp='1380205833' post='1304309671']
idi work avvaleda?

[url="http://www.mindfiresolutions.com/Java-Merging-multiple-PDFs-into-a-single-PDF-using-iText-671.php"]http://www.mindfires...g-iText-671.php[/url]

if not try this

[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]import java.io.FileOutputStream;[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]import java.io.IOException;[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]import com.lowagie.text.pdf.PdfCopyFields;[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]import com.lowagie.text.pdf.PdfReader;[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]public class Concatenate2PDF {[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]public static void main(String[] args)throws Exception {[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]System.out.println("Concatenate Two PDF"); [/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]PdfReader reader1 = new PdfReader("1PDF.pdf");[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]PdfReader reader2 = new PdfReader("2PDF.pdf");[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]PdfCopyFields copy = [/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]new PdfCopyFields(new FileOutputStream("concatenatedPDF.pdf"));[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]copy.addDocument(reader1);[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]copy.addDocument(reader2);[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]copy.close();[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]}[/background][/size][/font][/color]
[color=#000000][font=monospace][size=3][background=rgb(255, 255, 204)]}[/background][/size][/font][/color]
[/quote]

Will try.. thanx jailer

Posted

[quote name='cherlapalli_jailer' timestamp='1380134208' post='1304304506']

create or replace
PROCEDURE SP_Silly(p OUT emp__cursor)
IS

BEGIN
OPEN p cursor FOR
SELECT * FROM EMPLOYEE WHERE DEPT_ID = 300;
END;



java code



stmt = conn.prepareCall(" { call SP_silly(?) }" );


stmt.registerOutParameter(1, OracleTypes.CURSOR);
stmt.execute();

rs=(ResultSet)stmt.getObject(1);
while(rs.next())
{
//loop through
}
[/quote]


Thanks Jailer... nuvvu soooper.....

Posted

[quote name='SinnaBabu_Chavatabbayi' timestamp='1380290184' post='1304316612']


Thanks Jailer... nuvvu soooper.....
[/quote]
S%Hi

Posted

[quote name='innovative' timestamp='1380229164' post='1304312915']
Will try.. thanx jailer
[/quote] S%Hi

Posted

[quote name='NeneNaine' timestamp='1380294818' post='1304317130']
oye inno asalu java ante enti its my 1st ques :)
[/quote]

Itz good for you to google these type of questions and learn for yourself :)

Posted
@3$% [quote name='innovative' timestamp='1380298027' post='1304317629']

Itz good for you to google these type of questions and learn for yourself :)
[/quote]
×
×
  • Create New...