{"id":8871,"date":"2025-10-20T09:17:43","date_gmt":"2025-10-20T01:17:43","guid":{"rendered":"https:\/\/www.dccochina.com\/?p=8871"},"modified":"2025-10-20T09:18:04","modified_gmt":"2025-10-20T01:18:04","slug":"how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f","status":"publish","type":"post","link":"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/","title":{"rendered":"How to use the Java Card Development Kit for application development\uff1f"},"content":{"rendered":"<p>Smart cards power everything from banking to secure ID systems. Developing applications for these cards requires precision, security, and efficiency. The <a href=\"https:\/\/www.oracle.com\/java\/technologies\/javacard-downloads.html\">Java Card Development Kit<\/a> (JCDK) provides the tools developers need to create robust applets that run reliably on smart cards. Whether you are a seasoned developer or just starting with secure applications, understanding how to use the JCDK correctly ensures your projects succeed. This guide walks you through setup, coding, simulation, deployment, and maintenance, helping you get the most out of your Java Card development process.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Understanding the Development Environment<\/h4>\n\n\n\n<p>Before starting any project, familiarize yourself with the Java Card Development Kit (JCDK). This toolkit provides the essential libraries, APIs, and simulator required to develop secure applications on smart cards. It enables developers to write, test, and debug applets without immediately deploying them to physical cards. Installing the JCDK correctly ensures compatibility with your IDE and target Java Card platform. Always check the official Oracle or GlobalPlatform documentation for the latest supported versions. Using outdated tools can lead to unexpected errors or security vulnerabilities.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img fetchpriority=\"high\" decoding=\"async\" width=\"633\" height=\"418\" src=\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2024\/07\/Java-chip-cards-5.jpg\" alt=\"Java card\" class=\"wp-image-4445\" style=\"width:840px;height:auto\" srcset=\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2024\/07\/Java-chip-cards-5.jpg 633w, https:\/\/www.dccochina.com\/wp-content\/uploads\/2024\/07\/Java-chip-cards-5-300x198.jpg 300w, https:\/\/www.dccochina.com\/wp-content\/uploads\/2024\/07\/Java-chip-cards-5-600x396.jpg 600w\" sizes=\"(max-width: 633px) 100vw, 633px\" \/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">Setting Up Your Workspace<\/h4>\n\n\n\n<p>Organize your development workspace to separate source code, compiled files, and test resources. Typically, developers create a dedicated project folder containing subfolders for applet classes, CAP files, and test scripts. Integrate the JCDK with popular IDEs like Eclipse or IntelliJ IDEA. Configure the build paths to include Java Card APIs. This setup allows for efficient compilation and smooth transitions between simulation and deployment. Developers should also install a Java SE Development Kit compatible with their JCDK version to avoid runtime errors.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Creating a New Applet Project<\/h4>\n\n\n\n<p>Begin by defining your Applet\u2019s purpose and functionality. Use the JCDK to create a new project template. This template includes essential base classes that your Applet inherits, ensuring correct lifecycle management. Each Applet should implement the Applet class and override methods like install and process. Structuring your code logically helps with maintenance and debugging. Developers can use small, modular applets during initial testing to validate concepts before integrating complex business logic. Proper planning prevents wasted time during later stages.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img decoding=\"async\" width=\"637\" height=\"414\" src=\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/08\/image-14.png\" alt=\"Blank smart card\" class=\"wp-image-8214\" style=\"width:840px;height:auto\" srcset=\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/08\/image-14.png 637w, https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/08\/image-14-300x195.png 300w, https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/08\/image-14-18x12.png 18w, https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/08\/image-14-600x390.png 600w\" sizes=\"(max-width: 637px) 100vw, 637px\" \/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">Writing and Compiling Code<\/h4>\n\n\n\n<p><a href=\"https:\/\/www.dccochina.com\/product\/java-card\/\">Java Cards<\/a> have a subset of the Java language, so avoid unsupported features like floating-point arithmetic or specific standard libraries. Write your applet code according to the Java Card API specifications. Once complete, use the JCDK tools to compile your Java source files into .class files and then convert them into CAP (Converted Applet) files. CAP files are the format understood by smart card operating systems. Compile regularly and check for warnings or errors. Continuous compilation reduces the risk of introducing hard-to-find bugs during deployment.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Simulating the Applet<\/h4>\n\n\n\n<p>The JCDK includes simulators that mimic card behavior, allowing you to test your Applet without physical hardware. Use the simulator to send APDU commands and verify responses. This step ensures that your Applet correctly handles data transmission, security checks, and state management. Simulation also enables stress testing, such as sending large numbers of transactions or invalid commands, to observe applet behavior. Many developers report that thorough simulation catches over 80% of potential runtime issues before deployment.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img decoding=\"async\" width=\"792\" height=\"527\" src=\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/08\/image-22.png\" alt=\"EMV Compatible Cards\" class=\"wp-image-8338\" style=\"width:838px;height:auto\" srcset=\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/08\/image-22.png 792w, https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/08\/image-22-300x200.png 300w, https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/08\/image-22-768x511.png 768w, https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/08\/image-22-18x12.png 18w, https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/08\/image-22-600x399.png 600w\" sizes=\"(max-width: 792px) 100vw, 792px\" \/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">Deploying to a Physical Card<\/h4>\n\n\n\n<p>Once the Applet passes the simulation, prepare to deploy it to a genuine Java Card. Connect a card reader to your development environment and load the CAP file using GlobalPlatform-compliant tools. Verify the card\u2019s security domains and install permissions before uploading. After installation, run functional tests to confirm the Applet performs as intended. Developers working on banking or access control applications should also perform security tests, such as checking PIN validation and cryptographic functions. Real-world testing ensures reliability in production environments.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Maintaining and Updating Applets<\/h3>\n\n\n\n<p>Java Card applications often require updates to fix bugs or enhance functionality. Use version control to track changes in source code and CAP files. Increment applet versions carefully to maintain backward compatibility. Always test updates in simulation before deploying to cards. For example, updating cryptographic routines without thorough testing could lock out users or compromise security. Proper maintenance procedures prolong the lifespan of your applications and reduce operational risks.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"500\" height=\"400\" src=\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/09\/image-10.png\" alt=\"Prox Card\" class=\"wp-image-8605\" style=\"width:840px;height:auto\" srcset=\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/09\/image-10.png 500w, https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/09\/image-10-300x240.png 300w, https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/09\/image-10-15x12.png 15w\" sizes=\"(max-width: 500px) 100vw, 500px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Maximizing Java Card Development<\/h2>\n\n\n\n<p>Mastering the Java Card Development Kit allows developers to create secure, efficient, and reliable innovative card applications. By following structured workflows\u2014setup, coding, simulation, deployment, and maintenance\u2014you reduce errors and enhance performance. Whether you are developing for financial services, identification, or IoT devices, understanding each stage ensures consistent results. Adopting best practices from the start improves productivity and user trust, making your Java Card applications robust and future-proof.<\/p>\n\n\n\n<p><\/p>","protected":false},"excerpt":{"rendered":"<p>Smart cards power everything from banking to secure ID systems. Developing applications for these cards requires precision, security, and efficiency. The Java Card Development Kit (JCDK) provides the tools developers need to create robust applets that run reliably on smart cards. Whether you are a seasoned developer or just starting with secure applications, understanding how [&hellip;]<\/p>","protected":false},"author":1,"featured_media":6261,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[58],"tags":[194],"class_list":["post-8871","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-article","tag-java-card"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to use the Java Card Development Kit for application development\uff1f - Dcco<\/title>\n<meta name=\"description\" content=\"Learn how to use the Java Card Development Kit to build, test, deploy, and maintain secure, efficient smart card applications.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development\uff1f\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to use the Java Card Development Kit for application development\uff1f - Dcco\" \/>\n<meta property=\"og:description\" content=\"Learn how to use the Java Card Development Kit to build, test, deploy, and maintain secure, efficient smart card applications.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development\uff1f\/\" \/>\n<meta property=\"og:site_name\" content=\"Dcco\" \/>\n<meta property=\"article:published_time\" content=\"2025-10-20T01:17:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-20T01:18:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-33.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1151\" \/>\n\t<meta property=\"og:image:height\" content=\"768\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"ch123@\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"ch123@\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/\"},\"author\":{\"name\":\"ch123@\",\"@id\":\"https:\/\/www.dccochina.com\/#\/schema\/person\/6a860fe9f792152e2ec5d956e440f3ac\"},\"headline\":\"How to use the Java Card Development Kit for application development\uff1f\",\"datePublished\":\"2025-10-20T01:17:43+00:00\",\"dateModified\":\"2025-10-20T01:18:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/\"},\"wordCount\":756,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.dccochina.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-33.png\",\"keywords\":[\"Java Card\"],\"articleSection\":[\"Article\"],\"inLanguage\":\"es-ES\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/\",\"url\":\"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/\",\"name\":\"How to use the Java Card Development Kit for application development\uff1f - Dcco\",\"isPartOf\":{\"@id\":\"https:\/\/www.dccochina.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-33.png\",\"datePublished\":\"2025-10-20T01:17:43+00:00\",\"dateModified\":\"2025-10-20T01:18:04+00:00\",\"description\":\"Learn how to use the Java Card Development Kit to build, test, deploy, and maintain secure, efficient smart card applications.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/#breadcrumb\"},\"inLanguage\":\"es-ES\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es-ES\",\"@id\":\"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/#primaryimage\",\"url\":\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-33.png\",\"contentUrl\":\"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-33.png\",\"width\":1151,\"height\":768,\"caption\":\"Java card\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.dccochina.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to use the Java Card Development Kit for application development\uff1f\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dccochina.com\/#website\",\"url\":\"https:\/\/www.dccochina.com\/\",\"name\":\"Dcco\",\"description\":\"dccochina\",\"publisher\":{\"@id\":\"https:\/\/www.dccochina.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dccochina.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"es-ES\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.dccochina.com\/#organization\",\"name\":\"Dcco\",\"url\":\"https:\/\/www.dccochina.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es-ES\",\"@id\":\"https:\/\/www.dccochina.com\/#\/schema\/logo\/image\/\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"Dcco\"},\"image\":{\"@id\":\"https:\/\/www.dccochina.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dccochina.com\/#\/schema\/person\/6a860fe9f792152e2ec5d956e440f3ac\",\"name\":\"ch123@\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es-ES\",\"@id\":\"https:\/\/www.dccochina.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/69b8d7084a796150df25a19cb4f9b679d0448ec2544da0977aa2b78140c2ca39?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/69b8d7084a796150df25a19cb4f9b679d0448ec2544da0977aa2b78140c2ca39?s=96&d=mm&r=g\",\"caption\":\"ch123@\"},\"sameAs\":[\"http:\/\/demo.lezhan.org\"],\"url\":\"https:\/\/www.dccochina.com\/es\/author\/ch123\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to use the Java Card Development Kit for application development\uff1f - Dcco","description":"Learn how to use the Java Card Development Kit to build, test, deploy, and maintain secure, efficient smart card applications.","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:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development\uff1f\/","og_locale":"es_ES","og_type":"article","og_title":"How to use the Java Card Development Kit for application development\uff1f - Dcco","og_description":"Learn how to use the Java Card Development Kit to build, test, deploy, and maintain secure, efficient smart card applications.","og_url":"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development\uff1f\/","og_site_name":"Dcco","article_published_time":"2025-10-20T01:17:43+00:00","article_modified_time":"2025-10-20T01:18:04+00:00","og_image":[{"width":1151,"height":768,"url":"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-33.png","type":"image\/png"}],"author":"ch123@","twitter_card":"summary_large_image","twitter_misc":{"Written by":"ch123@","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/#article","isPartOf":{"@id":"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/"},"author":{"name":"ch123@","@id":"https:\/\/www.dccochina.com\/#\/schema\/person\/6a860fe9f792152e2ec5d956e440f3ac"},"headline":"How to use the Java Card Development Kit for application development\uff1f","datePublished":"2025-10-20T01:17:43+00:00","dateModified":"2025-10-20T01:18:04+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/"},"wordCount":756,"commentCount":0,"publisher":{"@id":"https:\/\/www.dccochina.com\/#organization"},"image":{"@id":"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-33.png","keywords":["Java Card"],"articleSection":["Article"],"inLanguage":"es-ES","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/","url":"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/","name":"How to use the Java Card Development Kit for application development\uff1f - Dcco","isPartOf":{"@id":"https:\/\/www.dccochina.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/#primaryimage"},"image":{"@id":"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-33.png","datePublished":"2025-10-20T01:17:43+00:00","dateModified":"2025-10-20T01:18:04+00:00","description":"Learn how to use the Java Card Development Kit to build, test, deploy, and maintain secure, efficient smart card applications.","breadcrumb":{"@id":"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/#breadcrumb"},"inLanguage":"es-ES","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/"]}]},{"@type":"ImageObject","inLanguage":"es-ES","@id":"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/#primaryimage","url":"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-33.png","contentUrl":"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-33.png","width":1151,"height":768,"caption":"Java card"},{"@type":"BreadcrumbList","@id":"https:\/\/www.dccochina.com\/es\/how-to-use-the-java-card-development-kit-for-application-development%ef%bc%9f\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.dccochina.com\/"},{"@type":"ListItem","position":2,"name":"How to use the Java Card Development Kit for application development\uff1f"}]},{"@type":"WebSite","@id":"https:\/\/www.dccochina.com\/#website","url":"https:\/\/www.dccochina.com\/","name":"Dcco","description":"dccochina","publisher":{"@id":"https:\/\/www.dccochina.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dccochina.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"es-ES"},{"@type":"Organization","@id":"https:\/\/www.dccochina.com\/#organization","name":"Dcco","url":"https:\/\/www.dccochina.com\/","logo":{"@type":"ImageObject","inLanguage":"es-ES","@id":"https:\/\/www.dccochina.com\/#\/schema\/logo\/image\/","url":"","contentUrl":"","caption":"Dcco"},"image":{"@id":"https:\/\/www.dccochina.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.dccochina.com\/#\/schema\/person\/6a860fe9f792152e2ec5d956e440f3ac","name":"ch123@","image":{"@type":"ImageObject","inLanguage":"es-ES","@id":"https:\/\/www.dccochina.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/69b8d7084a796150df25a19cb4f9b679d0448ec2544da0977aa2b78140c2ca39?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/69b8d7084a796150df25a19cb4f9b679d0448ec2544da0977aa2b78140c2ca39?s=96&d=mm&r=g","caption":"ch123@"},"sameAs":["http:\/\/demo.lezhan.org"],"url":"https:\/\/www.dccochina.com\/es\/author\/ch123\/"}]}},"jetpack_featured_media_url":"https:\/\/www.dccochina.com\/wp-content\/uploads\/2025\/01\/image-33.png","_links":{"self":[{"href":"https:\/\/www.dccochina.com\/es\/wp-json\/wp\/v2\/posts\/8871","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dccochina.com\/es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dccochina.com\/es\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dccochina.com\/es\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dccochina.com\/es\/wp-json\/wp\/v2\/comments?post=8871"}],"version-history":[{"count":1,"href":"https:\/\/www.dccochina.com\/es\/wp-json\/wp\/v2\/posts\/8871\/revisions"}],"predecessor-version":[{"id":8872,"href":"https:\/\/www.dccochina.com\/es\/wp-json\/wp\/v2\/posts\/8871\/revisions\/8872"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dccochina.com\/es\/wp-json\/wp\/v2\/media\/6261"}],"wp:attachment":[{"href":"https:\/\/www.dccochina.com\/es\/wp-json\/wp\/v2\/media?parent=8871"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dccochina.com\/es\/wp-json\/wp\/v2\/categories?post=8871"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dccochina.com\/es\/wp-json\/wp\/v2\/tags?post=8871"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}