{"id":845,"date":"2012-11-11T19:51:04","date_gmt":"2012-11-11T19:51:04","guid":{"rendered":"http:\/\/ilias-laptop\/examples\/desktop-java\/print\/print-to-file-with-java\/"},"modified":"2013-05-09T16:13:20","modified_gmt":"2013-05-09T13:13:20","slug":"print-to-file-with-java","status":"publish","type":"post","link":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/","title":{"rendered":"Print to file with Java"},"content":{"rendered":"<p>In this example we are going to see how to print a document to a .ps file in Java. This is very useful when you want to create simple and easy previews of the print that the user might perform.<\/p>\n<p>In order to print to a file, one should follow these steps:<\/p>\n<ul>\n<ul>\n<li>Open a new pdf file to print using\u00a0<code>BufferedInputStream(new FileInputStream(\"myfile.pdf\"))<\/code>.<\/li>\n<li>Create a PDF doc flavor using\u00a0<code><a href=\"http:\/\/docs.oracle.com\/javase\/7\/docs\/api\/javax\/print\/DocFlavor.html\">DocFlavor<\/a>.INPUT_STREAM.PDF<\/code>\u00a0that returns a<code>DocFlavor<\/code>\u00a0object.<\/li>\n<li>Use\u00a0<code><a href=\"http:\/\/docs.oracle.com\/javase\/7\/docs\/api\/javax\/print\/PrintServiceLookup.html\">PrintServiceLookup<\/a>.lookupDefaultPrintService()<\/code>\u00a0to locate the default print service for this environment.<\/li>\n<li>Use\u00a0<code>createPrintJob()<\/code>\u00a0to create and return a\u00a0<a href=\"http:\/\/docs.oracle.com\/javase\/7\/docs\/api\/javax\/print\/DocPrintJob.html\"><code>DocPrintJob<\/code><\/a>\u00a0capable of handling data from any of the supported document flavors.<\/li>\n<li>Create a class that extends\u00a0<code><a href=\"http:\/\/docs.oracle.com\/javase\/7\/docs\/api\/javax\/print\/event\/PrintJobAdapter.html\">PrintJobAdapter<\/a>.<\/code><\/li>\n<li>and override printJobCompleted. Then register a listener to the print job to get notified when the job is complete using.<\/li>\n<li>Set up the\u00a0<code><a href=\"http:\/\/docs.oracle.com\/javase\/7\/docs\/api\/javax\/print\/attribute\/PrintRequestAttributeSet.html\">PrintRequestAttributeSet<\/a><\/code>\u00a0using\u00a0<a href=\"http:\/\/docs.oracle.com\/javase\/7\/docs\/api\/javax\/print\/attribute\/HashPrintRequestAttributeSet.html\"><code>HashPrintRequestAttributeSet<\/code><\/a>.<\/li>\n<li>Use\u00a0<code>attributes.add(new <a href=\"http:\/\/docs.oracle.com\/javase\/7\/docs\/api\/javax\/print\/attribute\/standard\/Destination.html\">Destination<\/a>(new java.net.URI(\"file:C:\/myfile.ps\")))<\/code> to set the destination document.<\/li>\n<\/ul>\n<\/ul>\n<p>Let\u2019s see the code:<div style=\"display:inline-block; margin: 15px 0;\"> <div id=\"adngin-JavaCodeGeeks_incontent_video-0\" style=\"display:inline-block;\"><\/div> <\/div><\/p>\n<pre class=\"brush:java\">package com.javacodegeeks.snippets.desktop;\r\n\r\nimport java.io.BufferedInputStream;\r\nimport java.io.FileInputStream;\r\nimport java.io.InputStream;\r\n\r\nimport javax.print.Doc;\r\nimport javax.print.DocFlavor;\r\nimport javax.print.DocPrintJob;\r\nimport javax.print.PrintService;\r\nimport javax.print.PrintServiceLookup;\r\nimport javax.print.SimpleDoc;\r\nimport javax.print.attribute.HashPrintRequestAttributeSet;\r\nimport javax.print.attribute.PrintRequestAttributeSet;\r\nimport javax.print.attribute.standard.Destination;\r\nimport javax.print.event.PrintJobAdapter;\r\nimport javax.print.event.PrintJobEvent;\r\n\r\npublic class PrintToFileWithJava {\r\n\r\n\tprivate static boolean jobRunning = true;\r\n\r\n\tpublic static void main(String[] args) throws Exception {\r\n\r\n\t\t\/\/ Open the image file\r\n\r\n  InputStream is = new BufferedInputStream(new FileInputStream(\"myfile.pdf\"));\r\n\r\n  \/\/ create a PDF doc flavor\r\n\r\n  DocFlavor flavor = DocFlavor.INPUT_STREAM.PDF;\r\n\r\n  \/\/ Locate the default print service for this environment.\r\n\r\n  PrintService service = PrintServiceLookup.lookupDefaultPrintService();\r\n\r\n  \/\/ Create and return a PrintJob capable of handling data from\r\n\r\n  \/\/ any of the supported document flavors.\r\n\r\n  DocPrintJob printJob = service.createPrintJob();\r\n\r\n  \/\/ register a listener to get notified when the job is complete\r\n\r\n  printJob.addPrintJobListener(new JobCompleteMonitor());\r\n\r\n  \/\/ Construct a SimpleDoc with the specified \r\n\r\n  \/\/ print data, doc flavor and doc attribute set.\r\n\r\n  Doc doc = new SimpleDoc(is, flavor, null);\r\n\r\n  \/\/ set up the attributes\r\n\r\n  PrintRequestAttributeSet attributes = new HashPrintRequestAttributeSet();\r\n\r\n  attributes.add(new Destination(new java.net.URI(\"file:C:\/myfile.ps\")));\r\n\r\n  \/\/ Print a document with the specified job attributes.\r\n\r\n  printJob.print(doc, attributes);\r\n\r\n  while (jobRunning) {\r\n\r\n  \tThread.sleep(1000);\r\n\r\n  }\r\n\r\n  System.out.println(\"Exiting app\");\r\n\r\n  is.close();\r\n\r\n\t}\r\n\r\n\tprivate static class JobCompleteMonitor extends PrintJobAdapter {\r\n\t\t@Override\r\n\t\tpublic void printJobCompleted(PrintJobEvent jobEvent) {\r\n\t\t\tSystem.out.println(\"Job completed\");\r\n\t\t\tjobRunning = false;\r\n\t\t}\r\n\t}\r\n\r\n}<\/pre>\n<p>&nbsp;<br \/>\nThis was an example on how to print to file with Java.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this example we are going to see how to print a document to a .ps file in Java. This is very useful when you want to create simple and easy previews of the print that the user might perform. In order to print to a file, one should follow these steps: Open a new &hellip;<\/p>\n","protected":false},"author":6,"featured_media":1243,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[40],"tags":[195,1046],"class_list":["post-845","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-print","tag-desktop-java-2","tag-print"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Print to file with Java - Java Code Geeks<\/title>\n<meta name=\"description\" content=\"In this example we are going to see how to print a document to a .ps file in Java. This is very useful when you want to create simple and easy previews of\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Print to file with Java - Java Code Geeks\" \/>\n<meta property=\"og:description\" content=\"In this example we are going to see how to print a document to a .ps file in Java. This is very useful when you want to create simple and easy previews of\" \/>\n<meta property=\"og:url\" content=\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/\" \/>\n<meta property=\"og:site_name\" content=\"Examples Java Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/javacodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2012-11-11T19:51:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2013-05-09T13:13:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2012\/12\/java-duke-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"360\" \/>\n\t<meta property=\"og:image:height\" content=\"360\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Byron Kiourtzoglou\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@javacodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@javacodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Byron Kiourtzoglou\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/\"},\"author\":{\"name\":\"Byron Kiourtzoglou\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/3b111ec1048740c68c9e709ff6240015\"},\"headline\":\"Print to file with Java\",\"datePublished\":\"2012-11-11T19:51:04+00:00\",\"dateModified\":\"2013-05-09T13:13:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/\"},\"wordCount\":155,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2012\/12\/java-duke-logo.jpg\",\"keywords\":[\"desktop java\",\"print\"],\"articleSection\":[\"print\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/\",\"url\":\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/\",\"name\":\"Print to file with Java - Java Code Geeks\",\"isPartOf\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2012\/12\/java-duke-logo.jpg\",\"datePublished\":\"2012-11-11T19:51:04+00:00\",\"dateModified\":\"2013-05-09T13:13:20+00:00\",\"description\":\"In this example we are going to see how to print a document to a .ps file in Java. This is very useful when you want to create simple and easy previews of\",\"breadcrumb\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/#primaryimage\",\"url\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2012\/12\/java-duke-logo.jpg\",\"contentUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2012\/12\/java-duke-logo.jpg\",\"width\":\"360\",\"height\":\"360\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/examples.javacodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java Development\",\"item\":\"https:\/\/examples.javacodegeeks.com\/category\/java-development\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Desktop Java\",\"item\":\"https:\/\/examples.javacodegeeks.com\/category\/java-development\/desktop-java\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"print\",\"item\":\"https:\/\/examples.javacodegeeks.com\/category\/java-development\/desktop-java\/print\/\"},{\"@type\":\"ListItem\",\"position\":5,\"name\":\"Print to file with Java\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#website\",\"url\":\"https:\/\/examples.javacodegeeks.com\/\",\"name\":\"Java Code Geeks\",\"description\":\"Java Examples and Code Snippets\",\"publisher\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#organization\"},\"alternateName\":\"JCG\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/examples.javacodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/examples.javacodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/javacodegeeks\",\"https:\/\/x.com\/javacodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/3b111ec1048740c68c9e709ff6240015\",\"name\":\"Byron Kiourtzoglou\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2013\/10\/Byron-Kiourtzoglou-96x96.jpg\",\"contentUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2013\/10\/Byron-Kiourtzoglou-96x96.jpg\",\"caption\":\"Byron Kiourtzoglou\"},\"description\":\"Byron is a master software engineer working in the IT and Telecom domains. He is an applications developer in a wide variety of applications\/services. He is currently acting as the team leader and technical architect for a proprietary service creation and integration platform for both the IT and Telecom industries in addition to a in-house big data real-time analytics solution. He is always fascinated by SOA, middleware services and mobile development. Byron is co-founder and Executive Editor at Java Code Geeks.\",\"sameAs\":[\"https:\/\/www.pivotalgamers.com\/\",\"https:\/\/www.linkedin.com\/in\/byron-kiourtzoglou-530ab222\"],\"url\":\"https:\/\/examples.javacodegeeks.com\/author\/byron-kiourtzoglou\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Print to file with Java - Java Code Geeks","description":"In this example we are going to see how to print a document to a .ps file in Java. This is very useful when you want to create simple and easy previews of","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/","og_locale":"en_US","og_type":"article","og_title":"Print to file with Java - Java Code Geeks","og_description":"In this example we are going to see how to print a document to a .ps file in Java. This is very useful when you want to create simple and easy previews of","og_url":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/","og_site_name":"Examples Java Code Geeks","article_publisher":"https:\/\/www.facebook.com\/javacodegeeks","article_published_time":"2012-11-11T19:51:04+00:00","article_modified_time":"2013-05-09T13:13:20+00:00","og_image":[{"width":360,"height":360,"url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2012\/12\/java-duke-logo.jpg","type":"image\/jpeg"}],"author":"Byron Kiourtzoglou","twitter_card":"summary_large_image","twitter_creator":"@javacodegeeks","twitter_site":"@javacodegeeks","twitter_misc":{"Written by":"Byron Kiourtzoglou","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/#article","isPartOf":{"@id":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/"},"author":{"name":"Byron Kiourtzoglou","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/3b111ec1048740c68c9e709ff6240015"},"headline":"Print to file with Java","datePublished":"2012-11-11T19:51:04+00:00","dateModified":"2013-05-09T13:13:20+00:00","mainEntityOfPage":{"@id":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/"},"wordCount":155,"commentCount":1,"publisher":{"@id":"https:\/\/examples.javacodegeeks.com\/#organization"},"image":{"@id":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/#primaryimage"},"thumbnailUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2012\/12\/java-duke-logo.jpg","keywords":["desktop java","print"],"articleSection":["print"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/","url":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/","name":"Print to file with Java - Java Code Geeks","isPartOf":{"@id":"https:\/\/examples.javacodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/#primaryimage"},"image":{"@id":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/#primaryimage"},"thumbnailUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2012\/12\/java-duke-logo.jpg","datePublished":"2012-11-11T19:51:04+00:00","dateModified":"2013-05-09T13:13:20+00:00","description":"In this example we are going to see how to print a document to a .ps file in Java. This is very useful when you want to create simple and easy previews of","breadcrumb":{"@id":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/#primaryimage","url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2012\/12\/java-duke-logo.jpg","contentUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2012\/12\/java-duke-logo.jpg","width":"360","height":"360"},{"@type":"BreadcrumbList","@id":"https:\/\/examples.javacodegeeks.com\/java-development\/desktop-java\/print\/print-to-file-with-java\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/examples.javacodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Java Development","item":"https:\/\/examples.javacodegeeks.com\/category\/java-development\/"},{"@type":"ListItem","position":3,"name":"Desktop Java","item":"https:\/\/examples.javacodegeeks.com\/category\/java-development\/desktop-java\/"},{"@type":"ListItem","position":4,"name":"print","item":"https:\/\/examples.javacodegeeks.com\/category\/java-development\/desktop-java\/print\/"},{"@type":"ListItem","position":5,"name":"Print to file with Java"}]},{"@type":"WebSite","@id":"https:\/\/examples.javacodegeeks.com\/#website","url":"https:\/\/examples.javacodegeeks.com\/","name":"Java Code Geeks","description":"Java Examples and Code Snippets","publisher":{"@id":"https:\/\/examples.javacodegeeks.com\/#organization"},"alternateName":"JCG","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/examples.javacodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/examples.javacodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/examples.javacodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/javacodegeeks","https:\/\/x.com\/javacodegeeks"]},{"@type":"Person","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/3b111ec1048740c68c9e709ff6240015","name":"Byron Kiourtzoglou","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2013\/10\/Byron-Kiourtzoglou-96x96.jpg","contentUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2013\/10\/Byron-Kiourtzoglou-96x96.jpg","caption":"Byron Kiourtzoglou"},"description":"Byron is a master software engineer working in the IT and Telecom domains. He is an applications developer in a wide variety of applications\/services. He is currently acting as the team leader and technical architect for a proprietary service creation and integration platform for both the IT and Telecom industries in addition to a in-house big data real-time analytics solution. He is always fascinated by SOA, middleware services and mobile development. Byron is co-founder and Executive Editor at Java Code Geeks.","sameAs":["https:\/\/www.pivotalgamers.com\/","https:\/\/www.linkedin.com\/in\/byron-kiourtzoglou-530ab222"],"url":"https:\/\/examples.javacodegeeks.com\/author\/byron-kiourtzoglou\/"}]}},"_links":{"self":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/845","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/comments?post=845"}],"version-history":[{"count":0,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/845\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/media\/1243"}],"wp:attachment":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/media?parent=845"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/categories?post=845"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/tags?post=845"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}