create account

Merging PDF Files with Java by ghasemkiani

View this thread on: hive.blogpeakd.comecency.com
· @ghasemkiani · (edited)
$4.87
Merging PDF Files with Java
Merging PDF files is a common task that we usually need to do in our daily activities. Of course, it is possible and fairly easy to merge PDF files in various applications, including Adobe Acrobat or other similar applications. But sometimes you need to automate this task and a programmatic way could save you a lot of trouble when you need to do this very frequently.

<div class="text-center">

![Merging PDF Files](https://steemitimages.com/DQmbCCkwGRwoqCp9KRAHYBch89rzJJuXBwm2iP2CkciAZmt/image.png)

</div>

As you know, Java added scripting support in Java SE 6. This means that you can use other programming languages on the Java platform.

The most common scripting language used with Java is JavaScript. For this reason, Java is shipped with an out-of-the-box JavaScript engine, called [Nashorn](http://openjdk.java.net/projects/nashorn/).

Today, I needed to merge several PDF documents and I noticed that my old programs that I used to use for this task were, well, old. So I wrote a simple JavaScript file to do the task. It uses the excellent [iText](https://itextpdf.com/) library originally written by [Bruno Lowagie](https://www.lowagie.com/).

Here is the script:

```javascript
// merge.js

var File = java.io.File;
var PdfDocument = com.itextpdf.kernel.pdf.PdfDocument;
var PdfReader = com.itextpdf.kernel.pdf.PdfReader;
var PdfWriter = com.itextpdf.kernel.pdf.PdfWriter;
var PdfMerger = com.itextpdf.kernel.utils.PdfMerger;

function merge(destFilename, sourceFilenames) {
  var file = new File(destFilename).getAbsoluteFile();
  file.getParentFile().mkdirs();
  var destDocument = new PdfDocument(new PdfWriter(file));

  var merger = new PdfMerger(destDocument);

  sourceFilenames.forEach(function (sourceFilename) {
    var sourceDocument = new PdfDocument(new PdfReader(new File(sourceFilename)));
    merger.merge(sourceDocument, 1, sourceDocument.getNumberOfPages());
    sourceDocument.close();
  });

  destDocument.close();
}

var destFilename = arguments[0];
var sourceFilenames = arguments.slice(1);

merge(destFilename, sourceFilenames);
```

When using this simple program, you should provide the destination filename as the first argument and the source filenames as the next arguments. For example, if your destination filename is `dest.pdf` and the source filenames are `source1.pdf`, `source2.pdf`, and `source3.pdf`, then you can run the program on Windows as follows:

```
set classpath=itext7-io-7.0.2.jar;itext7-kernel-7.0.2.jar;slf4j-api-1.7.2.jar
java -cp %classpath% jdk.nashorn.tools.Shell merge.js -- dest.pdf source1.pdf source2.pdf source3.pdf
```

Of course, this post was just about using the iText library. Setting the classpath and managing the dependencies is a vast topic in itself and depends on your development environment.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 338 others
👎  , , , ,
properties (23)
authorghasemkiani
permlinkmerging-pdf-files-with-java
categoryprogramming
json_metadata{"tags":["programming","java","text","pdf","itext"],"app":"steemit/0.1","format":"markdown","percent_steem_dollars":10000,"image":["https://steemitimages.com/DQmbCCkwGRwoqCp9KRAHYBch89rzJJuXBwm2iP2CkciAZmt/image.png"],"links":["http://openjdk.java.net/projects/nashorn/","https://itextpdf.com/","https://www.lowagie.com/"]}
created2018-04-03 10:17:12
last_update2018-04-06 06:28:39
depth0
children155
last_payout2018-04-10 10:17:12
cashout_time1969-12-31 23:59:59
total_payout_value4.796 HBD
curator_payout_value0.077 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2,781
author_reputation90,438,911,242,538
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,092,401
net_rshares1,594,325,017,963
author_curate_reward""
vote details (407)
@a-alice ·
$0.08
Dear sir ghasemkiani :
hello, i want to rent your SP, i want to rent about 20k of your SP. I have little hope .. I just send bidbot because nobody votes for me,...I hope you will reply to my message.^^
Thank you :D
👍  
properties (23)
authora-alice
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180522t152803230z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-22 15:27:45
last_update2018-05-22 15:27:45
depth1
children2
last_payout2018-05-29 15:27:45
cashout_time1969-12-31 23:59:59
total_payout_value0.067 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length214
author_reputation531,801,276,391,272
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,097,951
net_rshares20,377,552,707
author_curate_reward""
vote details (1)
@ghasemkiani ·
$0.17
Hi. Thank you for your message. Unfortunately, I have no plan for delegating my steem power. As you know, there are services that delegate steem power, like @blocktrades. I think you can use those services. Thank you again, and good luck!
👍  , , , , , , ,
properties (23)
authorghasemkiani
permlinkre-a-alice-re-ghasemkiani-merging-pdf-files-with-java-20180522t154848415z
categoryprogramming
json_metadata{"tags":["programming"],"users":["blocktrades"],"app":"steemit/0.1"}
created2018-05-22 15:48:54
last_update2018-05-22 15:48:54
depth2
children1
last_payout2018-05-29 15:48:54
cashout_time1969-12-31 23:59:59
total_payout_value0.142 HBD
curator_payout_value0.027 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length238
author_reputation90,438,911,242,538
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,101,083
net_rshares42,513,591,666
author_curate_reward""
vote details (8)
@a-alice ·
sorry for disturbing you ^^
thanks for your advice.😄
properties (22)
authora-alice
permlinkre-ghasemkiani-re-a-alice-re-ghasemkiani-merging-pdf-files-with-java-20180522t155149261z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-22 15:51:51
last_update2018-05-22 15:51:51
depth3
children0
last_payout2018-05-29 15:51:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation531,801,276,391,272
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,101,564
net_rshares0
@ackza ·
Thanks for that upvote dsir! hope to see you post more on steem! come to the discord https://steemspeak.com
properties (22)
authorackza
permlinkpwvb5r
categoryprogramming
json_metadata{"tags":["programming"],"links":["https://steemspeak.com"],"app":"steemit/0.1"}
created2019-08-26 23:41:51
last_update2019-08-26 23:41:51
depth1
children0
last_payout2019-09-02 23:41:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length107
author_reputation287,695,264,112,368
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,989,444
net_rshares0
@agyapong ·
$0.03
great got to practice
👍  
properties (23)
authoragyapong
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180404t111021105z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-04 11:10:24
last_update2018-04-04 11:10:24
depth1
children0
last_payout2018-04-11 11:10:24
cashout_time1969-12-31 23:59:59
total_payout_value0.023 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation195,900,825,839
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,280,527
net_rshares10,226,127,065
author_curate_reward""
vote details (1)
@aliakbar2 ·
$0.03
Programing is difficult but is beneficial
👍  
properties (23)
authoraliakbar2
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180403t113432089z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-03 11:37:30
last_update2018-04-03 11:37:30
depth1
children0
last_payout2018-04-10 11:37:30
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation259,411,501,412,947
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,102,868
net_rshares10,226,110,342
author_curate_reward""
vote details (1)
@aliamuskan ·
good informative post you are very best post to suggest for .... share more post about information about pdf
properties (22)
authoraliamuskan
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180408t103603905z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-08 10:36:06
last_update2018-04-08 10:36:06
depth1
children0
last_payout2018-04-15 10:36:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation-37,558,394,908
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,950,876
net_rshares0
@aman0198129 ·
Thank you for sharing your beautiful writing.
properties (22)
authoraman0198129
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180410t160532134z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-10 16:05:33
last_update2018-04-10 16:05:33
depth1
children0
last_payout2018-04-17 16:05:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation108,319,912,849
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id49,333,489
net_rshares0
@amazingfects ·
Great information thanks for sharing.Upvoted  and followed.
👍  
properties (23)
authoramazingfects
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180406t163725502z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-06 16:37:27
last_update2018-04-06 16:37:27
depth1
children0
last_payout2018-04-13 16:37:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation726,768,003,626
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,684,556
net_rshares0
author_curate_reward""
vote details (1)
@angela.ghkh ·
$0.15
great! thanks for the info 😻
👍  , ,
properties (23)
authorangela.ghkh
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180406t021105169z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-06 02:11:09
last_update2018-04-06 02:11:09
depth1
children0
last_payout2018-04-13 02:11:09
cashout_time1969-12-31 23:59:59
total_payout_value0.134 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation2,888,077,605,665
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,583,670
net_rshares49,222,052,266
author_curate_reward""
vote details (3)
@aoecoin ·
thx 4 the upvote!

**AlphaOmegaEnergy (aoecoin) the World's #1 Breakthrough CleanEnergy Startup is going on the Blockchain this year with 2,922 new techs.**

- We are doing a Seedround on Blockchain
- Paying 300% Fixed Return Minimum to our Investors as a debt note. 
- Pre-sales are open now DM to invest.
* We will be building power plants with our world leading technology, as an asset backed Blockchain. We are mining with the power we make, and building an electric plane and several scalable social enterprise divisions as well. 
* We are securing the Seedround chain also with 100% collateral in shares of the company and a debt note. We have every receipt practically in triplicate. 
- **Make a Big Return helping us CHARGE IT ALL! And Change The World!!**

+ We will Comment your post, follow, and or up vote every time you support one of our posts or make positive comments! All promoters send me your win-win services & solutions!

**Can visit our steemit and check us out!**
https://steemit.com/@aoecoin

![We changed The World.png](https://cdn.steemitimages.com/DQmPQRHhfm6pFc6vg85Zpf4wLaJedr4c5dSzZJJZtH9gvcd/We%20changed%20The%20World.png)
properties (22)
authoraoecoin
permlinkptaqlj
categoryprogramming
json_metadata{"tags":["programming"],"image":["https://cdn.steemitimages.com/DQmPQRHhfm6pFc6vg85Zpf4wLaJedr4c5dSzZJJZtH9gvcd/We%20changed%20The%20World.png"],"links":["https://steemit.com/@aoecoin"],"app":"steemit/0.1"}
created2019-06-18 13:24:54
last_update2019-06-18 13:24:54
depth1
children0
last_payout2019-06-25 13:24:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,154
author_reputation8,562,479,240,765
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,847,377
net_rshares0
@asgharali ·
$0.03
Programming is a little bit confusing, but we will learn from your post.
👍  
properties (23)
authorasgharali
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180403t101839151z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-03 10:18:45
last_update2018-04-03 10:18:45
depth1
children0
last_payout2018-04-10 10:18:45
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length72
author_reputation616,093,102,861,327
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,092,597
net_rshares10,226,110,342
author_curate_reward""
vote details (1)
@ashokram ·
Thank you so much for giving me upvote.
Your working is very good
I follow your steemit account 
https://steemit.com/@ashokram
properties (22)
authorashokram
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180701t140641776z
categoryprogramming
json_metadata{"tags":["programming"],"links":["https://steemit.com/@ashokram"],"app":"steemit/0.1"}
created2018-07-01 14:06:45
last_update2018-07-01 14:06:45
depth1
children0
last_payout2018-07-08 14:06:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length126
author_reputation496,727,835,551
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,002,149
net_rshares0
@awahidsteem ·
a very steady progemmer @ghasemkiani, I am happy to follow your post
properties (22)
authorawahidsteem
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180506t181527804z
categoryprogramming
json_metadata{"tags":["programming"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-05-06 18:15:33
last_update2018-05-06 18:15:33
depth1
children0
last_payout2018-05-13 18:15:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation663,218,651,315
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id54,242,272
net_rshares0
@ayulustinaesteem ·
good post
👍  
properties (23)
authorayulustinaesteem
permlinkre-ghasemkiani-201844t20494300z
categoryprogramming
json_metadata{"tags":["programming","java","text","pdf","itext"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-04-04 13:49:06
last_update2018-04-04 13:49:06
depth1
children0
last_payout2018-04-11 13:49:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation290,569,909,345
root_title"Merging PDF Files with Java"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,302,727
net_rshares0
author_curate_reward""
vote details (1)
@barana ·
$0.03
تشکر از لطفتون
👍  ,
properties (23)
authorbarana
permlinkre-ghasemkiani-2018527t0452182z
categoryprogramming
json_metadata{"tags":["programming","java","text","pdf","itext"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-05-26 20:15:21
last_update2018-05-26 20:15:21
depth1
children0
last_payout2018-06-02 20:15:21
cashout_time1969-12-31 23:59:59
total_payout_value0.027 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation41,505,671,466
root_title"Merging PDF Files with Java"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,851,193
net_rshares10,018,074,907
author_curate_reward""
vote details (2)
@barana ·
$0.07
Salam
 mamnon as lotfeton
👍  , ,
properties (23)
authorbarana
permlinkre-ghasemkiani-201852t23711190z
categoryprogramming
json_metadata{"tags":["programming","java","text","pdf","itext"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-05-02 18:37:15
last_update2018-05-02 18:37:15
depth1
children0
last_payout2018-05-09 18:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.062 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation41,505,671,466
root_title"Merging PDF Files with Java"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,493,980
net_rshares14,880,520,202
author_curate_reward""
vote details (3)
@binam ·
سلام اقای کیانی
عرض ادب و احترام
اگر ممکنه یک راه ارتباطی فراهم کنید
باهاتون در تماس باشیم 
کمک بگیریم در رابطه با این شبکه
properties (22)
authorbinam
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180420t195157648z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-20 19:51:57
last_update2018-04-20 19:51:57
depth1
children1
last_payout2018-04-27 19:51:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length123
author_reputation237,005,144,905
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,183,119
net_rshares0
@ghasemkiani ·
<div dir="rtl" class="text-rtl">سلام. من با همین شناسه در steemit.chat هستم.</div>
👍  
properties (23)
authorghasemkiani
permlinkre-binam-re-ghasemkiani-merging-pdf-files-with-java-20180427t164631338z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-27 16:46:33
last_update2018-04-27 16:46:33
depth2
children0
last_payout2018-05-04 16:46:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation90,438,911,242,538
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,487,192
net_rshares0
author_curate_reward""
vote details (1)
@binam ·
$0.13
درود عرض ادب و احترام
تشکر بابت حمایتتون اقای دکتر❤🌷
👍  
properties (23)
authorbinam
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180427t121348852z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-27 12:13:51
last_update2018-04-27 12:13:51
depth1
children1
last_payout2018-05-04 12:13:51
cashout_time1969-12-31 23:59:59
total_payout_value0.094 HBD
curator_payout_value0.031 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation237,005,144,905
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,444,659
net_rshares20,273,867,466
author_curate_reward""
vote details (1)
@ghasemkiani ·
<div dir="rtl" class="text-rtl">سلام. خواهش می‌کنم. موفق باشید.</div>
👍  
properties (23)
authorghasemkiani
permlinkre-binam-re-ghasemkiani-merging-pdf-files-with-java-20180427t164408522z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-27 16:44:09
last_update2018-04-27 16:44:09
depth2
children0
last_payout2018-05-04 16:44:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation90,438,911,242,538
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,486,791
net_rshares0
author_curate_reward""
vote details (1)
@binam ·
عرض ادب و احترام
اگر ممکنه استیم چت رو چک بفرمایید🌷
👍  
properties (23)
authorbinam
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180506t072100607z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-06 07:21:06
last_update2018-05-06 07:21:06
depth1
children0
last_payout2018-05-13 07:21:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation237,005,144,905
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id54,152,741
net_rshares403,113,835
author_curate_reward""
vote details (1)
@binam ·
$0.05
عرض ادب اقای دکتر
سری به بلاگ ما هم بزنید 🌷
👍  
properties (23)
authorbinam
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180515t175812630z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-15 17:58:21
last_update2018-05-15 17:58:21
depth1
children0
last_payout2018-05-22 17:58:21
cashout_time1969-12-31 23:59:59
total_payout_value0.048 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation237,005,144,905
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,867,408
net_rshares10,189,610,117
author_curate_reward""
vote details (1)
@binam ·
واقعا ممنون بابت توجهتون اقای دکتر🌷 من یک سوال برام پیش اومده که چرا پستی قرار نمیدین؟🙈
properties (22)
authorbinam
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180515t181417936z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-15 18:14:30
last_update2018-05-15 18:14:30
depth1
children0
last_payout2018-05-22 18:14:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length87
author_reputation237,005,144,905
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,869,541
net_rshares0
@binam ·
هنوز سر به سر نشده اقای دکتر فکر کنم این ربات ها کلا ضرر هستن نه؟😄❤
properties (22)
authorbinam
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180517t220357725z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-17 22:03:57
last_update2018-05-17 22:03:57
depth1
children0
last_payout2018-05-24 22:03:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation237,005,144,905
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,262,013
net_rshares0
@blazing ·
wow this post really helped my friend today he was in need to merge something with java i don't know much but i remembered about this post and shared and this helped him wonderful coincidence that i found it thanks a lot for sharing that :D thanks for posting that :) and long time no see
properties (22)
authorblazing
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180617t192854072z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-06-17 19:28:54
last_update2018-06-17 19:28:54
depth1
children0
last_payout2018-06-24 19:28:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length288
author_reputation117,662,220,860,076
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,132,689
net_rshares0
@botaktong ·
$0.03
thank you for your information master @ghasemkiani
I follow you to always get information that is very important information, such as information listed above.
you have a very remarkable talent master @ghasemkiani

thanks very much..
👍  ,
properties (23)
authorbotaktong
permlinkre-ghasemkiani-201843t184720684z
categoryprogramming
json_metadata{"tags":["programming","java","text","pdf","itext"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-04-03 11:47:30
last_update2018-04-03 11:47:30
depth1
children0
last_payout2018-04-10 11:47:30
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length233
author_reputation307,381,998,460
root_title"Merging PDF Files with Java"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,104,216
net_rshares10,688,039,029
author_curate_reward""
vote details (2)
@boyelleq ·
Thanks for your best lesson sir...
Success is always for you...
properties (22)
authorboyelleq
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180408t090544677z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-08 09:05:48
last_update2018-04-08 09:05:48
depth1
children0
last_payout2018-04-15 09:05:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation2,112,654,729,102
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,941,743
net_rshares0
@brokernaples ·
thanks for sharing this. Still a bit too complicated for me. 
I go to ILOVEPDF.com and do everything there  - for free
properties (22)
authorbrokernaples
permlinkre-ghasemkiani-merging-pdf-files-with-java-20181129t003259386z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-11-29 00:33:00
last_update2018-11-29 00:33:00
depth1
children0
last_payout2018-12-06 00:33:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length118
author_reputation647,000,138,032
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,069,459
net_rshares0
@coinstantview ·
سلام هموطن اگه میشه فالو کنید هم دیگرو حمایت کنیم زنده باد ایران

Posted using [Partiko Android](https://partiko.app/referral/coinstantview)
properties (22)
authorcoinstantview
permlinkcoinstantview-re-ghasemkiani-merging-pdf-files-with-java-20190425t191545579z
categoryprogramming
json_metadata{"app":"partiko","client":"android"}
created2019-04-25 19:15:45
last_update2019-04-25 19:15:45
depth1
children0
last_payout2019-05-02 19:15:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length140
author_reputation22,896,368,804
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,753,671
net_rshares0
@crypto.update ·
That's Awesome for me... @ghasemkiani
Also check my post @crypto.update
properties (22)
authorcrypto.update
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180628t191512040z
categoryprogramming
json_metadata{"tags":["programming"],"users":["ghasemkiani","crypto.update"],"app":"steemit/0.1"}
created2018-06-28 19:15:15
last_update2018-06-28 19:15:15
depth1
children0
last_payout2018-07-05 19:15:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation-51,039,150,243
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id62,653,529
net_rshares0
@crystalhuman · (edited)
I always wondered how to do this and never bothered to look it up, thanks @ghasemkiani.  I appreciate your upvote too.  :) Have a nice one.  Man, I need you to teach me javascript lol
properties (22)
authorcrystalhuman
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180404t201402118z
categoryprogramming
json_metadata{"tags":["programming"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-04-04 20:14:03
last_update2018-04-04 20:16:33
depth1
children1
last_payout2018-04-11 20:14:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length183
author_reputation37,829,501,059,627
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,360,512
net_rshares0
@crystalhuman ·
I actually have some ideas for an online video game, but I'm not smart enough to use JS :/
properties (22)
authorcrystalhuman
permlinkre-crystalhuman-re-ghasemkiani-merging-pdf-files-with-java-20180404t201822408z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-04 20:18:24
last_update2018-04-04 20:18:24
depth2
children0
last_payout2018-04-11 20:18:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length90
author_reputation37,829,501,059,627
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,360,998
net_rshares0
@darkage ·
hey @ghasemkiani 
can you give me some steem power. by the way java programming always good think.
properties (22)
authordarkage
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180503t111648806z
categoryprogramming
json_metadata{"tags":["programming"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-05-03 11:16:54
last_update2018-05-03 11:16:54
depth1
children0
last_payout2018-05-10 11:16:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length98
author_reputation206,830,756,840
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,621,571
net_rshares0
@dashingh ·
hey @ghasemkiani , you have provided info which i was looking for long time. thanx for sharing it man
properties (22)
authordashingh
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180707t054142756z
categoryprogramming
json_metadata{"tags":["programming"],"community":"busy","app":"busy/2.5.0"}
created2018-07-07 05:41:42
last_update2018-07-07 05:41:42
depth1
children0
last_payout2018-07-14 05:41:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length101
author_reputation227,027,303,746
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,741,166
net_rshares0
@ddh58615 ·
hi @ghasemkiani  good article i follow and i hope to read more , thanks @ddh58615
properties (22)
authorddh58615
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180518t174642616z
categoryprogramming
json_metadata{"tags":["programming"],"users":["ghasemkiani","ddh58615"],"app":"steemit/0.1"}
created2018-05-18 17:46:45
last_update2018-05-18 17:46:45
depth1
children0
last_payout2018-05-25 17:46:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation2,425,164,134
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,414,693
net_rshares0
@essenceofworld ·
Thank You Very Much your vote!
properties (22)
authoressenceofworld
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180912t171623256z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-09-12 17:16:21
last_update2018-09-12 17:16:21
depth1
children0
last_payout2018-09-19 17:16:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation5,749,029,673,735
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,100,841
net_rshares0
@five34a4b ·
This is a great tutorial! You should repost it to utopian-io!


Hey @ghasemkiani! Sorry to ping on your post (if there’s a better way of contacting you, don’t hesitate to let me know), but, given you're one of my followers, any chance you'd like to try our new cross platform mobile app? We've added things we feel are missing from steemit like push notifications, user mentions, and chatting with other users. We’re also giving away free STEEM if you invite new users to the app.  You can download the app here for iOS:
 
https://itunes.apple.com/us/app/vapor-a-steem-app/id1359525246
 
or here for Android:
 
https://play.google.com/store/apps/details?id=com.vapor

Here’s the github if you’d like to audit the code yourself:
 
https://github.com/dancherb/vapor

 
We're always looking ways to improve the app, so if you have any feedback DM me in Vapor!
properties (22)
authorfive34a4b
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180608t052412661z
categoryprogramming
json_metadata{"tags":["programming"],"users":["ghasemkiani"],"links":["https://itunes.apple.com/us/app/vapor-a-steem-app/id1359525246","https://play.google.com/store/apps/details?id=com.vapor","https://github.com/dancherb/vapor"],"app":"steemit/0.1"}
created2018-06-08 05:24:12
last_update2018-06-08 05:24:12
depth1
children0
last_payout2018-06-15 05:24:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length856
author_reputation1,119,681,610,239
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,796,582
net_rshares0
@focusfit ·
thanks for the upvote on my recent post!
👍  
properties (23)
authorfocusfit
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180602t054156989z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-06-02 05:41:57
last_update2018-06-02 05:41:57
depth1
children0
last_payout2018-06-09 05:41:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation1,277,265,478,418
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,862,667
net_rshares515,258,549
author_curate_reward""
vote details (1)
@freedomshift ·
Thank you for upvoting my post: https://steemit.com/payitforward/@freedomshift/my-entry-to-week-18-curation-contest-win-sbi-shares-steem-monsters-cards-and-steem-bounty-first-contest-by-pifc
properties (22)
authorfreedomshift
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180731t191541875z
categoryprogramming
json_metadata{"tags":["programming"],"links":["https://steemit.com/payitforward/@freedomshift/my-entry-to-week-18-curation-contest-win-sbi-shares-steem-monsters-cards-and-steem-bounty-first-contest-by-pifc"],"app":"steemit/0.1"}
created2018-07-31 19:15:45
last_update2018-07-31 19:15:45
depth1
children0
last_payout2018-08-07 19:15:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length190
author_reputation18,193,534,208,555
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,672,050
net_rshares0
@freedomshift ·
$0.03
> 78208b3f Ghasemkiani @ghasemkiani upvote [@freedomshift/a-contest-to-win-steem-basic-income-…](https://steemit.com/ccc/@freedomshift/a-contest-to-win-steem-basic-income-sbi-shares-or-sbd-and-more-pay-it-forward-or-pass-it-on-contest) (24.3%) 

Thank you!

**_There is no post, blog or comment, for me to upvote you back._**|
--- |
👍  
properties (23)
authorfreedomshift
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180825t163048157z
categoryprogramming
json_metadata{"tags":["programming"],"users":["ghasemkiani"],"links":["https://steemit.com/ccc/@freedomshift/a-contest-to-win-steem-basic-income-sbi-shares-or-sbd-and-more-pay-it-forward-or-pass-it-on-contest"],"app":"steemit/0.1"}
created2018-08-25 16:30:51
last_update2018-08-25 16:30:51
depth1
children0
last_payout2018-09-01 16:30:51
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length332
author_reputation18,193,534,208,555
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id69,336,958
net_rshares21,281,533,731
author_curate_reward""
vote details (1)
@gnarlyanimations ·
$0.05
Great article. Thanks for the upvotes as well!
👍  
properties (23)
authorgnarlyanimations
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180514t203650950z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-14 19:32:21
last_update2018-05-14 19:32:21
depth1
children0
last_payout2018-05-21 19:32:21
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation481,457,224,468
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,693,959
net_rshares10,189,610,117
author_curate_reward""
vote details (1)
@gudanggaram ·
$0.05
perfect, I am happy with successful people like you. please help me upvote. thank you
👍  , , , ,
properties (23)
authorgudanggaram
permlinkre-ghasemkiani-2018510t2296708z
categoryprogramming
json_metadata{"tags":["programming","java","text","pdf","itext"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"}
created2018-05-10 15:09:36
last_update2018-05-10 15:09:36
depth1
children0
last_payout2018-05-17 15:09:36
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation85,981,382,528
root_title"Merging PDF Files with Java"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id54,972,264
net_rshares12,236,923,261
author_curate_reward""
vote details (5)
@haji ·
$0.03
nice post bro
👍  
properties (23)
authorhaji
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180404t123317356z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-04 12:33:18
last_update2018-04-04 12:33:18
depth1
children0
last_payout2018-04-11 12:33:18
cashout_time1969-12-31 23:59:59
total_payout_value0.030 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation3,030,788,981,572
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,291,418
net_rshares10,226,127,065
author_curate_reward""
vote details (1)
@haji ·
$0.04
bro support
👍  
properties (23)
authorhaji
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180408t175309174z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-08 17:53:12
last_update2018-04-08 17:53:12
depth1
children0
last_payout2018-04-15 17:53:12
cashout_time1969-12-31 23:59:59
total_payout_value0.033 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation3,030,788,981,572
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id49,006,958
net_rshares10,231,637,078
author_curate_reward""
vote details (1)
@haji ·
$0.04
دکتر با درصد بیشتری حمایتم کن
🙏
👍  
properties (23)
authorhaji
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180409t201319850z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-09 20:13:24
last_update2018-04-09 20:13:24
depth1
children0
last_payout2018-04-16 20:13:24
cashout_time1969-12-31 23:59:59
total_payout_value0.033 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation3,030,788,981,572
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id49,194,122
net_rshares10,193,727,315
author_curate_reward""
vote details (1)
@haji ·
doctor support ba darsad bala <3
properties (22)
authorhaji
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180414t073348408z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-14 07:33:45
last_update2018-04-14 07:33:45
depth1
children0
last_payout2018-04-21 07:33:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation3,030,788,981,572
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id49,981,999
net_rshares0
@haji ·
$0.10
سلام اقای کیانی عزیز
استیم اپ هم داره برا اندروید ؟
👍  ,
properties (23)
authorhaji
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180417t184421039z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-17 18:44:27
last_update2018-04-17 18:44:27
depth1
children3
last_payout2018-04-24 18:44:27
cashout_time1969-12-31 23:59:59
total_payout_value0.090 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation3,030,788,981,572
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id50,620,687
net_rshares20,787,569,051
author_curate_reward""
vote details (2)
@ghasemkiani ·
<div dir="rtl" class="text-rtl">

سلام، شبتون بخیر.

بله، اپلیکیشن [eSteem](https://esteem.ws/) هست که در ابتدا به‌وسیله‌ی ‎ @good-karma نوشته شده است.


</div>
👍  , ,
properties (23)
authorghasemkiani
permlinkre-haji-re-ghasemkiani-merging-pdf-files-with-java-20180417t190307269z
categoryprogramming
json_metadata{"tags":["programming"],"users":["good-karma"],"links":["https://esteem.ws/"],"app":"steemit/0.1"}
created2018-04-17 19:03:06
last_update2018-04-17 19:03:06
depth2
children2
last_payout2018-04-24 19:03:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length160
author_reputation90,438,911,242,538
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id50,623,300
net_rshares601,359,216
author_curate_reward""
vote details (3)
@ansari222 ·
You are great man.
properties (22)
authoransari222
permlinkre-ghasemkiani-re-haji-re-ghasemkiani-merging-pdf-files-with-java-20180419t195119575z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-19 19:51:27
last_update2018-04-19 19:51:27
depth3
children0
last_payout2018-04-26 19:51:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation103,898,193,236
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id50,994,025
net_rshares0
@ansari222 ·
Why you are not doing posts now a days,?
properties (22)
authoransari222
permlinkre-ghasemkiani-re-haji-re-ghasemkiani-merging-pdf-files-with-java-20180419t195247974z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-19 19:52:57
last_update2018-04-19 19:52:57
depth3
children0
last_payout2018-04-26 19:52:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation103,898,193,236
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id50,994,205
net_rshares0
@haji ·
Plz upvote
properties (22)
authorhaji
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180420t183456931z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-20 18:35:03
last_update2018-04-20 18:35:03
depth1
children0
last_payout2018-04-27 18:35:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation3,030,788,981,572
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,172,695
net_rshares0
@haji ·
سلام آقای کیانی .
خوب هستید ؟
عزیز یه سایتی بود که تعداد استیم پاور باید وارد میکردیم بعد مینوشت که این تعداد ارزش لایکت چقدر هست
آدرسشو فراموش کردم شما میدونید آدرسشو ؟
properties (22)
authorhaji
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180508t204721666z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-08 20:47:21
last_update2018-05-08 20:47:21
depth1
children0
last_payout2018-05-15 20:47:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length169
author_reputation3,030,788,981,572
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id54,633,480
net_rshares0
@hamdan12 ·
Thanks for the information, cool @ghasemkiani
properties (22)
authorhamdan12
permlinkre-ghasemkiani-201846t212916495z
categoryprogramming
json_metadata{"tags":["programming","java","text","pdf","itext"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-04-06 14:29:21
last_update2018-04-06 14:29:21
depth1
children0
last_payout2018-04-13 14:29:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation1,356,769,470,254
root_title"Merging PDF Files with Java"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,672,750
net_rshares0
@hicham.btc ·
$0.05
Thank you
👍  ,
properties (23)
authorhicham.btc
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180510t144605051z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-10 14:46:06
last_update2018-05-10 14:46:06
depth1
children0
last_payout2018-05-17 14:46:06
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation936,376,668,027
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id54,968,415
net_rshares10,708,684,509
author_curate_reward""
vote details (2)
@hiruhanif ·
wow!!very useful information.thank you very much.
properties (22)
authorhiruhanif
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180414t151514549z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-14 15:15:12
last_update2018-04-14 15:15:12
depth1
children0
last_payout2018-04-21 15:15:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation302,357,923,061
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id50,043,853
net_rshares0
@hkasif ·
great..!....😍
properties (22)
authorhkasif
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180501t083205748z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-01 08:32:09
last_update2018-05-01 08:32:09
depth1
children0
last_payout2018-05-08 08:32:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation332,038,593
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,193,507
net_rshares0
@hkasif ·
great post...
sir.
properties (22)
authorhkasif
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180501t095851197z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-01 09:58:57
last_update2018-05-01 09:58:57
depth1
children0
last_payout2018-05-08 09:58:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation332,038,593
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,205,890
net_rshares0
@itzrafi ·
@ghasemkiani  thanks a lot for this post. I've learn lots of things from it
properties (22)
authoritzrafi
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180518t182318698z
categoryprogramming
json_metadata{"tags":["programming"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-05-18 18:23:24
last_update2018-05-18 18:23:24
depth1
children1
last_payout2018-05-25 18:23:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length75
author_reputation58,489,327,655
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,420,022
net_rshares0
@pleasestop ·
#### Please Stop - @itzrafi

You just said "for this post" and in your [your last 100 comments](https://steemit.com/@itzrafi/comments) you used 45 phrases considered to be spam and you made this *exact same comment* 1 times. [You've received 0 flags](https://multi.tube/s/api/account-incoming-downvotes/itzrafi) and you may see more on comments like these. These comments are the reason why your [Steem Sincerity API](https://steemit.com/steemdev/@andybets/steem-sincerity-improved-anti-spam-api) [classification scores](https://multi.tube/s/api/accounts-info/itzrafi) are **Spam:** 60.00% and **Bot:** 2.60%

Please stop making comments like this and read the [ways to avoid @pleasestop](https://steemit.com/spam/@pleasestop/ways-to-avoid-pleasestop) and earn the support of the community.
properties (22)
authorpleasestop
permlinkwz00798sazl2le6vms2wicxdfuamw320-post
categoryprogramming
json_metadata{"app":"pleasestop"}
created2018-05-18 18:23:33
last_update2018-05-18 18:23:33
depth2
children0
last_payout2018-05-25 18:23:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length790
author_reputation793,172,990,523
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,420,044
net_rshares0
@jackjounior ·
$0.03
you came back after a long time with awesome blog
👍  
properties (23)
authorjackjounior
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180403t120644435z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-03 12:06:48
last_update2018-04-03 12:06:48
depth1
children0
last_payout2018-04-10 12:06:48
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation100,421,392,737
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,106,788
net_rshares10,226,110,342
author_curate_reward""
vote details (1)
@jahid419 · (edited)
Assalamuulaiqum.
Thank you very much

For informative post
properties (22)
authorjahid419
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180516t183427782z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-16 18:34:30
last_update2018-05-16 18:35:51
depth1
children0
last_payout2018-05-23 18:34:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation1,305,738,218
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,056,866
net_rshares0
@jamzmie ·
Thank you so much @ghasemkiani really appreciate it.
I have upvoted and followed. Hope to do some new content soon
properties (22)
authorjamzmie
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180831t014130551z
categoryprogramming
json_metadata{"tags":["programming"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-08-31 01:41:30
last_update2018-08-31 01:41:30
depth1
children0
last_payout2018-09-07 01:41:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length114
author_reputation8,967,146,873,581
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,847,597
net_rshares0
@jamzmie ·
Thanks man you keep showing support really appreciate it. Keep the steem alive. I bet your 100% vote is worth much more then mine👍
properties (22)
authorjamzmie
permlinkre-ghasemkiani-merging-pdf-files-with-java-20181021t011704284z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-10-21 01:17:06
last_update2018-10-21 01:17:06
depth1
children0
last_payout2018-10-28 01:17:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length130
author_reputation8,967,146,873,581
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,720,508
net_rshares0
@josh92 ·
@ghasemkiani I recently tried and Run the program on windows and Yay It's working. Thnx for the help friend.
properties (22)
authorjosh92
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180627t082237476z
categoryprogramming
json_metadata{"tags":["programming"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-06-27 08:22:36
last_update2018-06-27 08:22:36
depth1
children0
last_payout2018-07-04 08:22:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation427,542,864,787
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id62,455,461
net_rshares0
@jules-nickolas ·
The content is very informative 👍
properties (22)
authorjules-nickolas
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180727t041034717z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-07-27 04:10:36
last_update2018-07-27 04:10:36
depth1
children0
last_payout2018-08-03 04:10:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation1,907,184,514,514
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,113,637
net_rshares0
@kaleem345 ·
Thanks brother for support

Posted using [Partiko Android](https://steemit.com/@partiko-android)
properties (22)
authorkaleem345
permlinkkaleem345-re-ghasemkiani-merging-pdf-files-with-java-20180905t161616483z
categoryprogramming
json_metadata{"app":"partiko"}
created2018-09-05 16:16:15
last_update2018-09-05 16:16:15
depth1
children0
last_payout2018-09-12 16:16:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation9,849,577,612,331
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id70,416,120
net_rshares0
@kaleem345 ·
Good info sharing PDF in Java
properties (22)
authorkaleem345
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180801t060725338z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-08-01 06:12:12
last_update2018-08-01 06:12:12
depth1
children0
last_payout2018-08-08 06:12:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation9,849,577,612,331
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,723,048
net_rshares0
@kaleem345 ·
$0.03
Thank you so friend like my post, friend are you Arabic?
👍  
properties (23)
authorkaleem345
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180825t101313403z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-08-25 10:13:27
last_update2018-08-25 10:13:27
depth1
children0
last_payout2018-09-01 10:13:27
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation9,849,577,612,331
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,309,087
net_rshares21,281,533,731
author_curate_reward""
vote details (1)
@kaleem345 ·
$0.03
اسلام علیکم برادر

![2018082615353023.jpg](https://cdn.steemitimages.com/DQmaydmfGrNVMdiMtMGu4MVo3NBo9wudaAd7eYWL8sDcRKH/201808261535302389826.jpg)
👍  
properties (23)
authorkaleem345
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180826t165831398z
categoryprogramming
json_metadata{"tags":["programming"],"image":["https://cdn.steemitimages.com/DQmaydmfGrNVMdiMtMGu4MVo3NBo9wudaAd7eYWL8sDcRKH/201808261535302389826.jpg"],"app":"steemit/0.1"}
created2018-08-26 16:58:51
last_update2018-08-26 16:58:51
depth1
children0
last_payout2018-09-02 16:58:51
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length147
author_reputation9,849,577,612,331
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,426,993
net_rshares21,293,496,988
author_curate_reward""
vote details (1)
@kazmi1 ·
$0.03
Helpful post
👍  
properties (23)
authorkazmi1
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180403t114554837z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-03 11:46:03
last_update2018-04-03 11:46:03
depth1
children0
last_payout2018-04-10 11:46:03
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation3,714,572,604,837
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,104,031
net_rshares10,226,110,342
author_curate_reward""
vote details (1)
@kgakakillerg ·
Excellent post great information 👍
properties (22)
authorkgakakillerg
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180408t135839626z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-08 13:58:45
last_update2018-04-08 13:58:45
depth1
children0
last_payout2018-04-15 13:58:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation568,043,610,866,135
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,975,018
net_rshares0
@korkmaz ·
Merging PDF files programı to, Thank you very much for the valuable information you have given.😃
properties (22)
authorkorkmaz
permlinkre-ghasemkiani-201853t202115719z
categoryprogramming
json_metadata{"tags":["programming","java","text","pdf","itext"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"}
created2018-05-03 17:21:18
last_update2018-05-03 17:21:18
depth1
children0
last_payout2018-05-10 17:21:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation493,511,202,196
root_title"Merging PDF Files with Java"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,680,428
net_rshares0
@lafzaia ·
interesting,sir @ghasemkiani 
thanks for sharing..
@upvoted
properties (22)
authorlafzaia
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180425t141103338z
categoryprogramming
json_metadata{"tags":["programming"],"users":["ghasemkiani","upvoted"],"app":"steemit/0.1"}
created2018-04-25 14:11:06
last_update2018-04-25 14:11:06
depth1
children0
last_payout2018-05-02 14:11:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation277,541,426,868
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,073,248
net_rshares0
@linmyatkoko ·
thank for upvote me
properties (22)
authorlinmyatkoko
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180429t175258122z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-29 17:53:00
last_update2018-04-29 17:53:00
depth1
children0
last_payout2018-05-06 17:53:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation729,704,717,810
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,874,480
net_rshares0
@marlenny ·
$0.05
Thanks for Your support and kindness sir :)God bless you.
👍  
properties (23)
authormarlenny
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180514t001316608z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-14 00:13:18
last_update2018-05-14 00:13:18
depth1
children0
last_payout2018-05-21 00:13:18
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation418,527,521,214
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,543,193
net_rshares10,189,610,117
author_curate_reward""
vote details (1)
@masoudgh69 ·
$0.09
سلام. پست های بسیار خوبی رو در وبلاگتون مطالعه کردم. امیدوارم مجددا فعالیتتون رو در این شبکه از سر بگیرید و به کارتون ادامه بدید چون واقعا کارتون درسته.
👍  
properties (23)
authormasoudgh69
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180519t060700587z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-19 06:07:00
last_update2018-05-19 06:07:00
depth1
children1
last_payout2018-05-26 06:07:00
cashout_time1969-12-31 23:59:59
total_payout_value0.069 HBD
curator_payout_value0.023 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length152
author_reputation549,701,466,516
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id56,494,991
net_rshares20,364,553,124
author_curate_reward""
vote details (1)
@ghasemkiani ·
$0.06
<div dir="rtl" class="text-rtl">سلام. ممنونم از لطف شما. براتون آرزوی موفقیت دارم.</div>
👍  , , , , ,
properties (23)
authorghasemkiani
permlinkre-masoudgh69-re-ghasemkiani-merging-pdf-files-with-java-20180520t183509819z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-20 18:35:09
last_update2018-05-20 18:35:09
depth2
children0
last_payout2018-05-27 18:35:09
cashout_time1969-12-31 23:59:59
total_payout_value0.045 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length88
author_reputation90,438,911,242,538
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,751,573
net_rshares13,089,560,058
author_curate_reward""
vote details (6)
@master11641 ·
$0.16
Itext library is great for java and c# library  (contains of 4 dlls) called iTextSharp is based on this java library .But greater is use java packages from script languages that i saw here ! thanks for sharing
👍  ,
properties (23)
authormaster11641
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180406t062022499z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-06 06:20:24
last_update2018-04-06 06:20:24
depth1
children4
last_payout2018-04-13 06:20:24
cashout_time1969-12-31 23:59:59
total_payout_value0.152 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length209
author_reputation124,596,351,705
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,610,262
net_rshares51,263,918,573
author_curate_reward""
vote details (2)
@aliamuskan ·
good how are you brother. keep in touch and great to help each other.
properties (22)
authoraliamuskan
permlinkre-master11641-re-ghasemkiani-merging-pdf-files-with-java-20180408t103701490z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-08 10:37:03
last_update2018-04-08 10:37:03
depth2
children0
last_payout2018-04-15 10:37:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation-37,558,394,908
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,950,992
net_rshares0
@ghasemkiani ·
$0.09
Thank you. For quick tasks I prefer to use JavaScript over Java, because it is easier to write the code and run.
👍  , , ,
properties (23)
authorghasemkiani
permlinkre-master11641-re-ghasemkiani-merging-pdf-files-with-java-20180406t062521256z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-06 06:25:21
last_update2018-04-06 06:25:21
depth2
children2
last_payout2018-04-13 06:25:21
cashout_time1969-12-31 23:59:59
total_payout_value0.069 HBD
curator_payout_value0.018 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length112
author_reputation90,438,911,242,538
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,610,765
net_rshares28,922,188,924
author_curate_reward""
vote details (4)
@badol1994 ·
$0.18
thank you many many for upvote me..
👍  , ,
properties (23)
authorbadol1994
permlinkre-ghasemkiani-re-master11641-re-ghasemkiani-merging-pdf-files-with-java-20180407t191317700z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-07 19:13:18
last_update2018-04-07 19:13:18
depth3
children1
last_payout2018-04-14 19:13:18
cashout_time1969-12-31 23:59:59
total_payout_value0.136 HBD
curator_payout_value0.041 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation14,187,776,869,408
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,867,680
net_rshares41,182,849,648
author_curate_reward""
vote details (3)
@mdripon2018 ·
Assalamualaikum dear @ghasemkiani
Thats a helpful post
properties (22)
authormdripon2018
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180915t175751640z
categoryprogramming
json_metadata{"tags":["programming"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-09-15 17:57:51
last_update2018-09-15 17:57:51
depth1
children0
last_payout2018-09-22 17:57:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation944,939,221,557
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,382,946
net_rshares0
@melissakellie ·
awesome thanks for sharing :)
👍  
properties (23)
authormelissakellie
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180412t042755859z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-12 04:27:57
last_update2018-04-12 04:27:57
depth1
children1
last_payout2018-04-19 04:27:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation66,081,430,266,130
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id49,606,817
net_rshares0
author_curate_reward""
vote details (1)
@sawchha ·
yes madam
👍  
properties (23)
authorsawchha
permlinkre-melissakellie-re-ghasemkiani-merging-pdf-files-with-java-20180422t072351332z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-22 07:23:51
last_update2018-04-22 07:23:51
depth2
children0
last_payout2018-04-29 07:23:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation187,885,744,578
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,438,981
net_rshares354,538,421
author_curate_reward""
vote details (1)
@mohsenpsh ·
سلام. بابت پستهای مفیدی که میذارید ممنون هستم
لطفا منو هم فالو کنید تا با گسترش جامعه فارسی زبانان به هم دیگه کمک کنیم
👍  
properties (23)
authormohsenpsh
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180430t093320356z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-30 09:33:18
last_update2018-04-30 09:33:18
depth1
children0
last_payout2018-05-07 09:33:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length118
author_reputation435,370,910,362
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,998,331
net_rshares0
author_curate_reward""
vote details (1)
@molikhatun ·
The most common scripting language used with Java is JavaScript ,thanks for share information with us ,
properties (22)
authormolikhatun
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180406t213911881z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-06 21:39:21
last_update2018-04-06 21:39:21
depth1
children1
last_payout2018-04-13 21:39:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length103
author_reputation7,441,658,973,545
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,724,407
net_rshares0
@molikhatun ·
Resteem done
properties (22)
authormolikhatun
permlinkre-molikhatun-re-ghasemkiani-merging-pdf-files-with-java-20180406t213956597z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-06 21:40:09
last_update2018-04-06 21:40:09
depth2
children0
last_payout2018-04-13 21:40:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation7,441,658,973,545
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,724,492
net_rshares0
@mubarak ·
Help me my friend..
Thanks you so much
properties (22)
authormubarak
permlinkre-ghasemkiani-2018424t2113295z
categoryprogramming
json_metadata{"tags":["programming","java","text","pdf","itext"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-04-24 14:01:06
last_update2018-04-24 14:01:06
depth1
children0
last_payout2018-05-01 14:01:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation537,465,161,934
root_title"Merging PDF Files with Java"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,874,833
net_rshares0
@mukliss ·
Amazingg
properties (22)
authormukliss
permlinkre-ghasemkiani-2018730t143631178z
categoryprogramming
json_metadata{"tags":["programming","java","text","pdf","itext"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"}
created2018-07-30 07:36:54
last_update2018-07-30 07:36:54
depth1
children0
last_payout2018-08-06 07:36:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation825,588,040,668
root_title"Merging PDF Files with Java"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,481,591
net_rshares0
@n1rvana ·
great and informative post ..thanks for sharing
properties (22)
authorn1rvana
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180424t092320220z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-24 09:23:24
last_update2018-04-24 09:23:24
depth1
children0
last_payout2018-05-01 09:23:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation24,569,616,057
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,833,531
net_rshares0
@nafismuhymeen ·
thanks man. Great information.
properties (22)
authornafismuhymeen
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180626t195442132z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-06-26 19:56:12
last_update2018-06-26 19:56:12
depth1
children0
last_payout2018-07-03 19:56:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation2,211,702,898
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id62,391,112
net_rshares0
@nimik ·
$0.03
Good post.
👍  
properties (23)
authornimik
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180407t021137364z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-07 02:11:39
last_update2018-04-07 02:11:39
depth1
children0
last_payout2018-04-14 02:11:39
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation856,557,847,201
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,750,026
net_rshares10,230,607,019
author_curate_reward""
vote details (1)
@nounou ·
waw
properties (22)
authornounou
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180904t144353862z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-09-04 14:43:51
last_update2018-09-04 14:43:51
depth1
children0
last_payout2018-09-11 14:43:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3
author_reputation18,893,948,164
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id70,297,985
net_rshares0
@nurhasib ·
$0.05
asalamuallaikum thank you've shared
👍  
properties (23)
authornurhasib
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180515t152612220z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-15 15:26:24
last_update2018-05-15 15:26:24
depth1
children0
last_payout2018-05-22 15:26:24
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation446,713,087,389
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,843,938
net_rshares10,189,610,117
author_curate_reward""
vote details (1)
@nuruzzamn77 ·
Well, integrating PDF files is a common thing that should usually be done in our daily activities. Of course ,
properties (22)
authornuruzzamn77
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180528t140624419z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-28 14:06:33
last_update2018-05-28 14:06:33
depth1
children0
last_payout2018-06-04 14:06:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation14,481,107,567
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,115,769
net_rshares0
@omegamar ·
Thanks ghasemkiani for upvote me.
properties (22)
authoromegamar
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180408t190654922z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-08 19:07:09
last_update2018-04-08 19:07:09
depth1
children0
last_payout2018-04-15 19:07:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation13,526,009,757
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id49,015,992
net_rshares0
@omorfaruk44 ·
$0.03
Thank you for your little supporting.
👍  
properties (23)
authoromorfaruk44
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180403t142633380z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-03 14:26:39
last_update2018-04-03 14:26:39
depth1
children0
last_payout2018-04-10 14:26:39
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation29,770,551,629
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,127,150
net_rshares10,226,110,342
author_curate_reward""
vote details (1)
@otenmoten ·
$0.03
Are you thinking about to create Java classes of your tool?

I mean, it would great to import your project into Java to accomplish the task of merging, without dealing with JavaScript.
👍  , ,
properties (23)
authorotenmoten
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180403t134308625z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-03 13:43:09
last_update2018-04-03 13:43:09
depth1
children2
last_payout2018-04-10 13:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length184
author_reputation5,210,356,060
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,120,234
net_rshares10,794,549,404
author_curate_reward""
vote details (3)
@ghasemkiani ·
I think that's the logical thing to do.  But for quick solutions, I prefer JavaScript. Java is more suitable for larger projects. In the recent years, I have mostly used JavaScript, so it is easier for me to write in JavaScript. As you can see, my programming posts are all about JavaScript.
👍  ,
properties (23)
authorghasemkiani
permlinkre-otenmoten-re-ghasemkiani-merging-pdf-files-with-java-20180403t144218182z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-03 14:42:21
last_update2018-04-03 14:42:21
depth2
children1
last_payout2018-04-10 14:42:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length291
author_reputation90,438,911,242,538
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,129,532
net_rshares236,568,203
author_curate_reward""
vote details (2)
@otenmoten ·
$0.03
Sadly
👍  
properties (23)
authorotenmoten
permlinkre-ghasemkiani-201843t213348139z
categoryprogramming
json_metadata{"tags":"programming","app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-04-03 19:33:48
last_update2018-04-03 19:33:48
depth3
children0
last_payout2018-04-10 19:33:48
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation5,210,356,060
root_title"Merging PDF Files with Java"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,171,747
net_rshares10,226,110,342
author_curate_reward""
vote details (1)
@paradise.ati ·
$0.10
Danke schön 💗 prima
👍  
properties (23)
authorparadise.ati
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180515t084600605z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-15 08:46:06
last_update2018-05-15 08:46:06
depth1
children0
last_payout2018-05-22 08:46:06
cashout_time1969-12-31 23:59:59
total_payout_value0.075 HBD
curator_payout_value0.024 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation77,106,125,013,663
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id55,787,877
net_rshares20,378,697,653
author_curate_reward""
vote details (1)
@participant ·
It's always nice to see you come and upvote my posts. Thanks buddy👍
properties (22)
authorparticipant
permlinkpulweh
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2019-07-14 00:37:30
last_update2019-07-14 00:37:30
depth1
children0
last_payout2019-07-21 00:37:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation29,528,532,394,758
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,263,883
net_rshares0
@pinay ·
$0.13
<a href="https://twitter.com/AdGoggleKo">@AdGoggleKo</a> Just tweeted your post. 😊 

<a href="https://steemit.com/steemgigs/@pinay/tweet-your-steemgigs-posts">
<img src="https://steemitimages.com/DQmaVe6GkHUSApnnDB8mPPs4111SpbjX1FEzvomb1pJ7auR/image.gif"/></a>
👍  
properties (23)
authorpinay
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180408t025915747z
categoryprogramming
json_metadata{"tags":["programming"],"image":["https://steemitimages.com/DQmaVe6GkHUSApnnDB8mPPs4111SpbjX1FEzvomb1pJ7auR/image.gif"],"links":["https://twitter.com/AdGoggleKo","https://steemit.com/steemgigs/@pinay/tweet-your-steemgigs-posts"],"app":"steemit/0.1"}
created2018-04-08 02:59:18
last_update2018-04-08 02:59:18
depth1
children1
last_payout2018-04-15 02:59:18
cashout_time1969-12-31 23:59:59
total_payout_value0.100 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length260
author_reputation2,774,743,716,203
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,907,067
net_rshares30,692,235,783
author_curate_reward""
vote details (1)
@ghasemkiani ·
That's great! Thank you.
👍  ,
properties (23)
authorghasemkiani
permlinkre-pinay-re-ghasemkiani-merging-pdf-files-with-java-20180408t043115681z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-08 04:31:21
last_update2018-04-08 04:31:21
depth2
children0
last_payout2018-04-15 04:31:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation90,438,911,242,538
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,915,105
net_rshares1,639,448,610
author_curate_reward""
vote details (2)
@pornworld ·
Amazing idea of the post
properties (22)
authorpornworld
permlinkre-ghasemkiani-2018418t95045101z
categoryprogramming
json_metadata{"tags":["programming","java","text","pdf","itext"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-04-18 04:50:45
last_update2018-04-18 04:50:45
depth1
children0
last_payout2018-04-25 04:50:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation-229,381,472,837
root_title"Merging PDF Files with Java"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id50,691,200
net_rshares0
@pornworld ·
Fantastic working on steemit platform
I am very impressed for you
properties (22)
authorpornworld
permlinkre-ghasemkiani-2018418t95113594z
categoryprogramming
json_metadata{"tags":["programming","java","text","pdf","itext"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-04-18 04:51:15
last_update2018-04-18 04:51:15
depth1
children0
last_payout2018-04-25 04:51:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length65
author_reputation-229,381,472,837
root_title"Merging PDF Files with Java"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id50,691,270
net_rshares0
@power-whale ·
very nice post
properties (22)
authorpower-whale
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180910t062418894z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-09-10 06:24:24
last_update2018-09-10 06:24:24
depth1
children0
last_payout2018-09-17 06:24:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation11,845,834,251,352
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id70,854,775
net_rshares0
@putry01 ·
thank you upvote his friend, I may be friends with frends, now I've followed yes.
properties (22)
authorputry01
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180414t060902547z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-14 06:09:09
last_update2018-04-14 06:09:09
depth1
children0
last_payout2018-04-21 06:09:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation3,916,220,276,470
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id49,971,655
net_rshares0
@rafroldan ·
excellent information, very good post
properties (22)
authorrafroldan
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180721t062334100z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-07-21 06:23:27
last_update2018-07-21 06:23:27
depth1
children0
last_payout2018-07-28 06:23:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation356,538,549,877
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,445,343
net_rshares0
@rajajordan ·
New way to approach t.q 
Keep posting..
properties (22)
authorrajajordan
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180419t125012753z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-19 12:50:15
last_update2018-04-19 12:50:15
depth1
children0
last_payout2018-04-26 12:50:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation12,678,099,596
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id50,932,572
net_rshares0
@rchrzib ·
Assalamu alaikum sir, How are you? Thanks for sharing this post.it will be helful to demonstrate to merge multiple PDF documents using iText and Java.
properties (22)
authorrchrzib
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180623t065201081z
categoryprogramming
json_metadata{"tags":["programming"],"community":"busy","app":"busy/2.4.0"}
created2018-06-23 06:52:03
last_update2018-06-23 06:52:03
depth1
children0
last_payout2018-06-30 06:52:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length150
author_reputation8,827,888,535
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,872,529
net_rshares0
@rohit12123 ·
$0.11
Informative post
👍  
properties (23)
authorrohit12123
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180420t153002372z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-20 15:30:18
last_update2018-04-20 15:30:18
depth1
children0
last_payout2018-04-27 15:30:18
cashout_time1969-12-31 23:59:59
total_payout_value0.107 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation3,553,562,276,116
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,144,640
net_rshares19,620,975,242
author_curate_reward""
vote details (1)
@romyjaykar ·
Hi, I just followed you :-)
Follow back and we can help each other succeed!@romyjaykar
properties (22)
authorromyjaykar
permlinkre-ghasemkiani-2018418t04120927z
categoryprogramming
json_metadata{"tags":["programming","java","text","pdf","itext"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-04-17 17:45:15
last_update2018-04-17 17:45:15
depth1
children0
last_payout2018-04-24 17:45:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation5,060,713,234
root_title"Merging PDF Files with Java"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id50,611,846
net_rshares0
@roselover ·
$0.03
Vehicle programming is really fascinating
The Java program is irreplaceable because it has a lot of benefits
👍  
properties (23)
authorroselover
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180403t102631704z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-03 10:26:33
last_update2018-04-03 10:26:33
depth1
children0
last_payout2018-04-10 10:26:33
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation3,636,502,956,599
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,093,640
net_rshares10,226,110,342
author_curate_reward""
vote details (1)
@s0os0o7 ·
hi my friend.Thanks if you see my page
properties (22)
authors0os0o7
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180623t191252879z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-06-23 19:13:09
last_update2018-06-23 19:13:09
depth1
children0
last_payout2018-06-30 19:13:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation75,363,774,327
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,950,799
net_rshares0
@s0os0o7 ·
hi my friend.Thanks if you see my page
properties (22)
authors0os0o7
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180623t191503794z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-06-23 19:15:09
last_update2018-06-23 19:15:09
depth1
children0
last_payout2018-06-30 19:15:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation75,363,774,327
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,951,034
net_rshares0
@saddam1210 ·
$0.03
Online java teacher
👍  
properties (23)
authorsaddam1210
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180407t003005224z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-07 00:30:09
last_update2018-04-07 00:30:09
depth1
children0
last_payout2018-04-14 00:30:09
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation110,797,071,519
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,740,105
net_rshares10,230,534,839
author_curate_reward""
vote details (1)
@saddam1210 ·
$0.23
r u ok??? long time no post ...
👍  
properties (23)
authorsaddam1210
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180507t104709111z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-07 10:47:09
last_update2018-05-07 10:47:09
depth1
children3
last_payout2018-05-14 10:47:09
cashout_time1969-12-31 23:59:59
total_payout_value0.195 HBD
curator_payout_value0.039 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation110,797,071,519
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id54,357,228
net_rshares50,905,429,426
author_curate_reward""
vote details (1)
@ghasemkiani ·
$0.32
Thank you. I am just fine. I am currently busy with my day job. Thank you for asking, though. I hope you are doing fine, and I wish you all the best on Steemit!
👍  , , , , , ,
properties (23)
authorghasemkiani
permlinkre-saddam1210-re-ghasemkiani-merging-pdf-files-with-java-20180507t110825068z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-07 11:08:33
last_update2018-05-07 11:08:33
depth2
children2
last_payout2018-05-14 11:08:33
cashout_time1969-12-31 23:59:59
total_payout_value0.251 HBD
curator_payout_value0.073 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length160
author_reputation90,438,911,242,538
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id54,360,226
net_rshares70,886,954,303
author_curate_reward""
vote details (7)
@saddam1210 ·
$0.09
thank you very much .. & hope u will be available soon. Allah hafez
👍  
properties (23)
authorsaddam1210
permlinkre-ghasemkiani-re-saddam1210-re-ghasemkiani-merging-pdf-files-with-java-20180507t120000532z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-07 12:00:00
last_update2018-05-07 12:00:00
depth3
children0
last_payout2018-05-14 12:00:00
cashout_time1969-12-31 23:59:59
total_payout_value0.093 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation110,797,071,519
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id54,367,538
net_rshares20,362,451,088
author_curate_reward""
vote details (1)
@thura ·
ေက်းဇူးတင္ပါတယ္ခင္ဗ်ာthank you
properties (22)
authorthura
permlinkre-ghasemkiani-re-saddam1210-re-ghasemkiani-merging-pdf-files-with-java-20180509t191407362z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-09 19:14:09
last_update2018-05-09 19:14:09
depth3
children0
last_payout2018-05-16 19:14:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation10,734,112,205,759
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id54,808,257
net_rshares0
@sam1210 ·
$0.37
Assalamu alaikum sir,  
How are you?
👍  , , ,
properties (23)
authorsam1210
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180422t151539144z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-22 15:15:45
last_update2018-04-22 15:15:45
depth1
children4
last_payout2018-04-29 15:15:45
cashout_time1969-12-31 23:59:59
total_payout_value0.284 HBD
curator_payout_value0.089 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation1,732,544,462,145
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,502,706
net_rshares56,057,778,962
author_curate_reward""
vote details (4)
@amritmahal ·
this i really best way
properties (22)
authoramritmahal
permlinkre-sam1210-re-ghasemkiani-merging-pdf-files-with-java-20180901t124852461z
categoryprogramming
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["programming"],"users":[],"links":[],"image":[]}
created2018-09-01 12:48:54
last_update2018-09-01 12:48:54
depth2
children0
last_payout2018-09-08 12:48:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation2,890,066,274,228
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,998,511
net_rshares0
@ghasemkiani ·
$0.03
Hi. Thank you, I'm fine. Just a little busy with my translation works.
👍  , , ,
properties (23)
authorghasemkiani
permlinkre-sam1210-re-ghasemkiani-merging-pdf-files-with-java-20180422t170905560z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-22 17:09:06
last_update2018-04-22 17:09:06
depth2
children1
last_payout2018-04-29 17:09:06
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation90,438,911,242,538
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,520,491
net_rshares4,934,416,251
author_curate_reward""
vote details (4)
@sam1210 ·
Sounds good. i am also little bit busy with my job. But it's high time to get some benefit from it.  i am really missing the opportunity.
👍  ,
properties (23)
authorsam1210
permlinkre-ghasemkiani-re-sam1210-re-ghasemkiani-merging-pdf-files-with-java-20180423t064424510z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-23 06:44:21
last_update2018-04-23 06:44:21
depth3
children0
last_payout2018-04-30 06:44:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length137
author_reputation1,732,544,462,145
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,621,879
net_rshares2,104,472,526
author_curate_reward""
vote details (2)
@mirzaaliimran ·
thanks for share just an informative and helping post
properties (22)
authormirzaaliimran
permlinkre-sam1210-re-ghasemkiani-merging-pdf-files-with-java-20180426t123053659z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-26 12:34:12
last_update2018-04-26 12:34:12
depth2
children0
last_payout2018-05-03 12:34:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation-859,018,244,515
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,252,198
net_rshares0
@sam1210 ·
When you want start a new series? Waiting for your post, sir.
👍  ,
properties (23)
authorsam1210
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180526t103947070z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-26 10:39:51
last_update2018-05-26 10:39:51
depth1
children0
last_payout2018-06-02 10:39:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation1,732,544,462,145
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,781,589
net_rshares3,537,095,373
author_curate_reward""
vote details (2)
@sawchha ·
good post thank you
👍  
properties (23)
authorsawchha
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180422t072301507z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-22 07:23:03
last_update2018-04-22 07:23:03
depth1
children0
last_payout2018-04-29 07:23:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation187,885,744,578
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,438,880
net_rshares363,707,519
author_curate_reward""
vote details (1)
@sbanerjee0017 ·
✅ @ghasemkiani All the best keep it up
@sbanerjee0017 (Shyamal Banerjee[Age:62] Kolkata,INDIA)✍
properties (22)
authorsbanerjee0017
permlinkre-ghasemkiani-merging-pdf-files-with-java-20181102t062044671z
categoryprogramming
json_metadata{"tags":["programming"],"users":["ghasemkiani","sbanerjee0017"],"app":"steemit/0.1"}
created2018-11-02 06:20:45
last_update2018-11-02 06:20:45
depth1
children0
last_payout2018-11-09 06:20:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation5,125,229,623,441
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id74,523,612
net_rshares0
@shaifullah ·
There is a very important information in this post
properties (22)
authorshaifullah
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180519t054913466z
categoryprogramming
json_metadata{"tags":["programming"],"community":"busy","app":"busy/2.4.0"}
created2018-05-19 05:49:15
last_update2018-05-19 05:49:15
depth1
children0
last_payout2018-05-26 05:49:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation568,994,336,827
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,493,289
net_rshares0
@shareables ·
Greetings @ghasemkiani! Your post was chosen at random and was resteemed as part of Shareables' campaign. __Enjoy your free resteem!__

> If you wish to stop receiving this comment, please do unfollow us.

> By upvoting this notification, you're supporting shareables' campaign here in Steemit. For more information about our campaign, click [here](https://steemit.com/resteem/@shareables/announcement-free-resteem-or-yep-we-ve-done-it-spread-the-news-repost)!

@Shareables, we resteem anything we find shareable. Always strive for quality content. Go on express and harness your blogging potential!

God bless from us @Shareables!
properties (22)
authorshareables
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180406t000944360z
categoryprogramming
json_metadata{"tags":["programming"],"users":["ghasemkiani","shareables"],"links":["https://steemit.com/resteem/@shareables/announcement-free-resteem-or-yep-we-ve-done-it-spread-the-news-repost"],"app":"steemit/0.1"}
created2018-04-05 09:10:33
last_update2018-04-05 09:10:33
depth1
children0
last_payout2018-04-12 09:10:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length631
author_reputation258,381,463,370
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,449,268
net_rshares0
@shortsegments ·
Hi
Thank you for upvoting my post on bidbots.
When do you think you will be posting again?
I would like to return the favor.
Thanks
@shortsegments

https://steemit.com/steem/@shortsegments/steemit-tools-intro-to-bit-bots
Feel free to check out my latest posts: https://steemit.com/promo-steemit/@shortsegments/what-special-features-makes-steemit-wallet-secure
👍  
properties (23)
authorshortsegments
permlinkre-ghasemkiani-merging-pdf-files-with-java-20181109t150033269z
categoryprogramming
json_metadata{"tags":["programming"],"users":["shortsegments"],"links":["https://steemit.com/steem/@shortsegments/steemit-tools-intro-to-bit-bots","https://steemit.com/promo-steemit/@shortsegments/what-special-features-makes-steemit-wallet-secure"],"app":"steemit/0.1"}
created2018-11-09 15:00:33
last_update2018-11-09 15:00:33
depth1
children0
last_payout2018-11-16 15:00:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length359
author_reputation668,758,713,406,123
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id74,981,084
net_rshares1,216,767,390
author_curate_reward""
vote details (1)
@sohelrana28 ·
Hey. Much thanks to you, I'm fine. Only somewhat occupied with my interpretation works.
properties (22)
authorsohelrana28
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180430t171822855z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-30 17:18:24
last_update2018-04-30 17:18:24
depth1
children0
last_payout2018-05-07 17:18:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length87
author_reputation375,281,766
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,073,757
net_rshares0
@sparklinggems ·
$0.03
Very nice tip for the programmers. Thank you for sharing such information.
👍  
properties (23)
authorsparklinggems
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180404t145122092z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-04 14:51:27
last_update2018-04-04 14:51:27
depth1
children0
last_payout2018-04-11 14:51:27
cashout_time1969-12-31 23:59:59
total_payout_value0.023 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length74
author_reputation60,748,362,804
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,313,541
net_rshares10,226,456,213
author_curate_reward""
vote details (1)
@steem2u ·
Assalamualaikum Mr @ghasemkiani how are you and thank for Upvote and visit my blog
👍  
properties (23)
authorsteem2u
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180510t045842953z
categoryprogramming
json_metadata{"tags":["programming"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-05-10 04:58:48
last_update2018-05-10 04:58:48
depth1
children0
last_payout2018-05-17 04:58:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation112,174,495,358
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id54,884,948
net_rshares247,321,213
author_curate_reward""
vote details (1)
@steemitalhaq ·
$0.03
Thanks for information @ghasemkiani.
👍  , ,
properties (23)
authorsteemitalhaq
permlinkre-ghasemkiani-201843t181456784z
categoryprogramming
json_metadata{"tags":["programming","java","text","pdf","itext"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"}
created2018-04-03 11:15:03
last_update2018-04-03 11:15:03
depth1
children0
last_payout2018-04-10 11:15:03
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation70,134,278,560
root_title"Merging PDF Files with Java"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,099,799
net_rshares11,421,519,589
author_curate_reward""
vote details (3)
@steemitboard ·
Congratulations @ghasemkiani! You received a personal award!

<table><tr><td>https://steemitimages.com/70x70/http://steemitboard.com/@ghasemkiani/birthday3.png</td><td>Happy Birthday! - You are on the Steem blockchain for 3 years!</td></tr></table>

<sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@ghasemkiani) and compare to others on the [Steem Ranking](https://steemitboard.com/ranking/index.php?name=ghasemkiani)_</sub>


###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-ghasemkiani-20190810t175315000z
categoryprogramming
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-08-10 17:53:15
last_update2019-08-10 17:53:15
depth1
children0
last_payout2019-08-17 17:53:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length632
author_reputation38,975,615,169,260
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,377,115
net_rshares0
@steemitservice ·
$0.03
Assalamoalaikum. Really helpful post bro. have a nice day
👍  
properties (23)
authorsteemitservice
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180403t133748304z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-03 13:38:09
last_update2018-04-03 13:38:09
depth1
children0
last_payout2018-04-10 13:38:09
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation375,814,397,062
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,119,519
net_rshares10,226,110,342
author_curate_reward""
vote details (1)
@suparmanyns96 ·
Best wishes ... I am very interested in your pots .. Hope the future is better.@ghasemkiani
properties (22)
authorsuparmanyns96
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180522t124055413z
categoryprogramming
json_metadata{"tags":["programming"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-05-22 12:41:03
last_update2018-05-22 12:41:03
depth1
children0
last_payout2018-05-29 12:41:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length91
author_reputation87,449,008,200
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,071,340
net_rshares0
@supernova55 ·
@ghasemkiani Thank you very much for support my work. :)

Have a lovely and peaceful evening! 

Your friend @supernova55 :)
properties (22)
authorsupernova55
permlinkre-ghasemkiani-merging-pdf-files-with-java-20181106t042429537z
categoryprogramming
json_metadata{"tags":["programming"],"users":["ghasemkiani","supernova55"],"app":"steemit/0.1"}
created2018-11-06 04:24:27
last_update2018-11-06 04:24:27
depth1
children0
last_payout2018-11-13 04:24:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length123
author_reputation24,129,829,002,188
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id74,764,118
net_rshares0
@sushovon002 ·
$0.03
Thanks for the information dear.  but I can't do t myself CZ I'm really bad at programming ... my friend can help me from this. :)
👍  
properties (23)
authorsushovon002
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180403t105831423z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-03 10:58:33
last_update2018-04-03 10:58:33
depth1
children0
last_payout2018-04-10 10:58:33
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length130
author_reputation967,595,771,389
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,097,715
net_rshares10,226,110,342
author_curate_reward""
vote details (1)
@susmitasinha.roy ·
hlw sir,, hw r u??
properties (22)
authorsusmitasinha.roy
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180521t055223439z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-21 05:52:27
last_update2018-05-21 05:52:27
depth1
children0
last_payout2018-05-28 05:52:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation54,119,370,485
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,828,150
net_rshares0
@susmitasinha.roy ·
tnx a lot ,,, sir,,,, for visiting into my post,,,,,
👍  
properties (23)
authorsusmitasinha.roy
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180521t090611415z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-05-21 09:06:18
last_update2018-05-21 09:06:18
depth1
children0
last_payout2018-05-28 09:06:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation54,119,370,485
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,851,423
net_rshares2,816,962,851
author_curate_reward""
vote details (1)
@syedkashifhussai ·
Thank you very much sir @ghasemkiani for coming my post .
Stay blessed steem on
properties (22)
authorsyedkashifhussai
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180418t135846918z
categoryprogramming
json_metadata{"tags":["programming"],"users":["ghasemkiani"],"app":"steemit/0.1"}
created2018-04-18 13:58:51
last_update2018-04-18 13:58:51
depth1
children0
last_payout2018-04-25 13:58:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation13,303,701,158,637
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id50,763,578
net_rshares0
@teacherf ·
$0.13
salam. mamnon babate hemayatetun. movafagh bashid.
👍  
properties (23)
authorteacherf
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180427t070045268z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-27 07:00:45
last_update2018-04-27 07:00:45
depth1
children1
last_payout2018-05-04 07:00:45
cashout_time1969-12-31 23:59:59
total_payout_value0.094 HBD
curator_payout_value0.031 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation140,642,344,841
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,402,655
net_rshares20,273,867,466
author_curate_reward""
vote details (1)
@ghasemkiani ·
<div dir="rtl" class="text-rtl">سلام. ممنون از لطف شما. موفق باشید.</div>
👍  
properties (23)
authorghasemkiani
permlinkre-teacherf-re-ghasemkiani-merging-pdf-files-with-java-20180427t164746057z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-27 16:47:48
last_update2018-04-27 16:47:48
depth2
children0
last_payout2018-05-04 16:47:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation90,438,911,242,538
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,487,380
net_rshares0
author_curate_reward""
vote details (1)
@techxegama ·
$0.03
Great info post will help more in daily life
👍  
properties (23)
authortechxegama
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180403t104903715z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-03 10:49:18
last_update2018-04-03 10:49:18
depth1
children0
last_payout2018-04-10 10:49:18
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation1,490,383,789,085
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,096,617
net_rshares10,226,110,342
author_curate_reward""
vote details (1)
@throwawayaccount ·
What is the use case?
properties (22)
authorthrowawayaccount
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180516t124903325z
categoryprogramming
json_metadata{"tags":["programming"],"community":"busy","app":"busy/2.4.0"}
created2018-05-16 12:49:06
last_update2018-05-16 12:49:06
depth1
children0
last_payout2018-05-23 12:49:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation-479,586,892,695
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,004,328
net_rshares0
@tommy123 ·
Thanks you my post
Cara penulisan nya sangat membantu dan bermanfaat sekali
properties (22)
authortommy123
permlinkre-ghasemkiani-201846t213917704z
categoryprogramming
json_metadata{"tags":["programming","java","text","pdf","itext"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-04-06 14:39:18
last_update2018-04-06 14:39:18
depth1
children0
last_payout2018-04-13 14:39:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length75
author_reputation288,476,986,890
root_title"Merging PDF Files with Java"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,674,412
net_rshares0
@tommy123 ·
Nice my post
The best
Thanks you
properties (22)
authortommy123
permlinkre-ghasemkiani-201847t111328105z
categoryprogramming
json_metadata{"tags":["programming","java","text","pdf","itext"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-04-07 04:13:33
last_update2018-04-07 04:13:33
depth1
children0
last_payout2018-04-14 04:13:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation288,476,986,890
root_title"Merging PDF Files with Java"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,762,915
net_rshares0
@victtorpvh21 ·
buen post, de mucha ayuda, pasa por mi perfil y regalame tu voto en alguno de mis post amigo, ya te sigo ... saludos
properties (22)
authorvicttorpvh21
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180422t130350975z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-22 13:03:51
last_update2018-04-22 13:03:51
depth1
children0
last_payout2018-04-29 13:03:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation10,742,911,596
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,482,740
net_rshares0
@wide ·
یه لایک از طرف برو بکس ایرانی توی ستیمیت
اگه دوست داشتی یه سری به گروهمون بزن
https://t.me/joinchat/EmQ1qxBRPAwP1tFhk3uxXw
properties (22)
authorwide
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180430t154125860z
categoryprogramming
json_metadata{"tags":["programming"],"links":["https://t.me/joinchat/EmQ1qxBRPAwP1tFhk3uxXw"],"app":"steemit/0.1"}
created2018-04-30 15:41:24
last_update2018-04-30 15:41:24
depth1
children0
last_payout2018-05-07 15:41:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation10,851,892,825
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,057,213
net_rshares0
@zuhracut ·
$0.06
thank you very much for visiting my best friend
👍  
properties (23)
authorzuhracut
permlinkre-ghasemkiani-merging-pdf-files-with-java-20180427t143041319z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2018-04-27 14:30:48
last_update2018-04-27 14:30:48
depth1
children0
last_payout2018-05-04 14:30:48
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation17,096,227,050
root_title"Merging PDF Files with Java"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,465,668
net_rshares10,136,933,733
author_curate_reward""
vote details (1)