René's URL Explorer Experiment


Title: Add "Calling out to C code from Java" pattern: JNI vs FFM API by Copilot · Pull Request #130 · javaevolved/javaevolved.github.io · GitHub

Open Graph Title: Add "Calling out to C code from Java" pattern: JNI vs FFM API by Copilot · Pull Request #130 · javaevolved/javaevolved.github.io

X Title: Add "Calling out to C code from Java" pattern: JNI vs FFM API by Copilot · Pull Request #130 · javaevolved/javaevolved.github.io

Description: Adds a new advanced language pattern contrasting the legacy JNI approach with the modern Foreign Function & Memory (FFM) API introduced in Java 22, highlighting how FFM eliminates the need for C-side Java awareness entirely. New pattern: content/language/call-c-from-java.yaml Both the old and modern sides call strlen("Bambi") and print "Return value 5", making them directly comparable: Old (JNI): declare native long strlen(String s) → run javac -h → write a C wrapper using JNI conventions (JNIEnv*, GetStringUTFChars, ReleaseStringUTFChars, etc.) → compile and link a .so Modern (FFM): call strlen directly from the C stdlib via Linker, Arena, and MethodHandle — no C code required at all The comparison highlights that JNI can't even call a simple stdlib function without a C wrapper, while FFM calls it directly: void main() throws Throwable { try (var arena = Arena.ofConfined()) { var stdlib = Linker.nativeLinker().defaultLookup(); var foreignFuncAddr = stdlib.find("strlen").orElseThrow(); var strlenSig = FunctionDescriptor.of(ValueLayout.JAVA_LONG, ValueLayout.ADDRESS); var strlenMethod = Linker.nativeLinker().downcallHandle(foreignFuncAddr, strlenSig); var ret = (long) strlenMethod.invokeExact(arena.allocateFrom("Bambi")); IO.println("Return value " + ret); // 5 } } Navigation chain compact-canonical-constructor → call-c-from-java → enterprise/servlet-vs-jaxrs Proof script: proof/language/CallCFromJava.java Calls strlen via FFM; uses //JAVA_OPTIONS --enable-native-access=ALL-UNNAMED Translations Added for all 12 non-English locales: de, es, pt-BR, zh-CN, ar, fr, ja, ko, bn, it, pl, tr Technical terms (JNI, FFM, javac, JNIEnv, MethodHandle, Arena, JDK 22) are preserved untranslated in all locales Original prompt This section details on the original issue you should resolve [Pattern] ### Category language Slug call-c-from-java Title Calling out to C code from Java Difficulty advanced Since JDK 22 Summary Simplifies C/C++ code to be called from Java, allowing most existing libraries to be used without adapters or cumbersome C code modification. Old code label Java 1.1+ Old code public class CallCFromJava { static { System.loadLibrary("hello-jni"); } public static native int greet(String name); public static void main(String[] args) { int ret = greet("Bambi"); System.out.println("Return value " + ret); } } Then run javac -h, then view the generated .h file, then write your .c file: #include "CallCFromJava.h" JNIEXPORT int JNICALL Java_CallCFromJava_greet(JNIEnv *env, jclass this, jstring str) { const char* name = (*env)->GetStringUTFChars(env, str, NULL); printf("Hello %s\n", name); return 0; } Modern code label Java 22+ Modern code public class CallCFromJava { void main() throws Throwable { try (Arena arena = Arena.ofConfined()) { SymbolLookup ourLib = SymbolLookup.libraryLookup("libhello-ffi.so", arena); Optional segment = ourLib.find("greet"); MemorySegment foreignFuncAddr = segment.get(); FunctionDescriptor greet_sig= // return and input parameter FunctionDescriptor.of(ValueLayout.JAVA_LONG, ValueLayout.ADDRESS); MethodHandle greetMethod = Linker.nativeLinker().downcallHandle(foreignFuncAddr, greet_sig); var ret = (long) greetMethod.invokeExact(arena.allocateFrom("Bambi")); System.out.println("Return value " + ret); } } } C Code: int greet(char* name) { printf("Hello %s\n", name); return 0; } Explanation Java has two techniques for interfacing between Java and C/C++ code, the traditional JNI and the newer FFM. With JNI you simply declare your method as native, but then you have to run javac -h to generate a C-language .h (header) file, then have your C code implement that, and deal with the slightly cumbersome JNI C-language API. FFM simplifies the C code to the point that it doesn't have to know anything about Java. This makes it much easier to interface with existing C/C++-language libraries. It does take a few more lines of Java code, but the net effect is more readable and more maintainable. Compare the C code in both versions and you'll see the difference! Minimal runnable demo can be found at https://github.com/IanDarwin/javaevolved-java_callling_c Why the modern way wins 👁 Better readability — C code doesn't have to learn Java! ⚡ More flexible - can directly call most existing C/C++ libraries ⚡ Easier - don't have to stop, run javac -h, and implement the "interface" defined in .h file. Comments on the Issue (you are @copilot in this section) @brunoborges @IanDarwin what do you think of this code snippet for the Modern side? void main() throws Throwable { try (var arena = Arena.ofConfined()) { // Use a system library to prove FFM compiles and links var stdlib = Linker.nativeLinker().defaultLookup(); var foreignFuncAddr = stdlib.find("strlen").orElseThrow(); var strlen_sig = FunctionDescriptor.of(ValueLayout.JAVA_LONG, ValueLayout.ADDRESS); var strlenMethod = Linker.nativeLinker().downcallHandle(foreignFuncAddr, strlen_sig); var ret = (long) strlenMethod.invokeExact(arena.allocateFrom("Bambi")); IO.println("Return value " + ret); } } Fixes #129 💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Open Graph Description: Adds a new advanced language pattern contrasting the legacy JNI approach with the modern Foreign Function & Memory (FFM) API introduced in Java 22, highlighting how FFM eliminates the need for ...

X Description: Adds a new advanced language pattern contrasting the legacy JNI approach with the modern Foreign Function & Memory (FFM) API introduced in Java 22, highlighting how FFM eliminates the need ...

Opengraph URL: https://github.com/javaevolved/javaevolved.github.io/pull/130

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:1286494a-9f64-c0ca-178d-68a3c98142c5
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idC4B2:21ABD1:1C69E3E:26C7CD6:6A6089B5
html-safe-nonce8be44257e58c013c1bbdffa5dcf185dfe4384109bd793b334e01a6024da6b000
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDNEIyOjIxQUJEMToxQzY5RTNFOjI2QzdDRDY6NkE2MDg5QjUiLCJ2aXNpdG9yX2lkIjoiMjA4MTI3ODc5NDc5NjE0MDk4MiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacc234892134fed4e34978bd65f2986006e5c9d30d8d0e35a026a1f625ee576773
hovercard-subject-tagpull_request:3346498695
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/javaevolved/javaevolved.github.io/pull/130/files
twitter:imagehttps://avatars.githubusercontent.com/in/1143301?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/in/1143301?s=400&v=4
og:image:altAdds a new advanced language pattern contrasting the legacy JNI approach with the modern Foreign Function & Memory (FFM) API introduced in Java 22, highlighting how FFM eliminates the need for ...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Nonec0632c7929f76e8db538ffed06ab2fc4c524a012b0888e95d96928690fcc604d
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/javaevolved/javaevolved.github.io git https://github.com/javaevolved/javaevolved.github.io.git
octolytics-dimension-user_id261976795
octolytics-dimension-user_loginjavaevolved
octolytics-dimension-repository_id1159421298
octolytics-dimension-repository_nwojavaevolved/javaevolved.github.io
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id1159421298
octolytics-dimension-repository_network_root_nwojavaevolved/javaevolved.github.io
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release4f9009410bd92637ba907f71dc7f7af3f0df45aa
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/javaevolved/javaevolved.github.io/pull/130/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fjavaevolved%2Fjavaevolved.github.io%2Fpull%2F130%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fjavaevolved%2Fjavaevolved.github.io%2Fpull%2F130%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=javaevolved%2Fjavaevolved.github.io
Reloadhttps://github.com/javaevolved/javaevolved.github.io/pull/130/files
Reloadhttps://github.com/javaevolved/javaevolved.github.io/pull/130/files
Reloadhttps://github.com/javaevolved/javaevolved.github.io/pull/130/files
Please reload this pagehttps://github.com/javaevolved/javaevolved.github.io/pull/130/files
javaevolved https://github.com/javaevolved
javaevolved.github.iohttps://github.com/javaevolved/javaevolved.github.io
Notifications https://github.com/login?return_to=%2Fjavaevolved%2Fjavaevolved.github.io
Fork 25 https://github.com/login?return_to=%2Fjavaevolved%2Fjavaevolved.github.io
Star 375 https://github.com/login?return_to=%2Fjavaevolved%2Fjavaevolved.github.io
Code https://github.com/javaevolved/javaevolved.github.io
Issues 2 https://github.com/javaevolved/javaevolved.github.io/issues
Pull requests 1 https://github.com/javaevolved/javaevolved.github.io/pulls
Discussions https://github.com/javaevolved/javaevolved.github.io/discussions
Actions https://github.com/javaevolved/javaevolved.github.io/actions
Projects https://github.com/javaevolved/javaevolved.github.io/projects
Security and quality 0 https://github.com/javaevolved/javaevolved.github.io/security
Insights https://github.com/javaevolved/javaevolved.github.io/pulse
Code https://github.com/javaevolved/javaevolved.github.io
Issues https://github.com/javaevolved/javaevolved.github.io/issues
Pull requests https://github.com/javaevolved/javaevolved.github.io/pulls
Discussions https://github.com/javaevolved/javaevolved.github.io/discussions
Actions https://github.com/javaevolved/javaevolved.github.io/actions
Projects https://github.com/javaevolved/javaevolved.github.io/projects
Security and quality https://github.com/javaevolved/javaevolved.github.io/security
Insights https://github.com/javaevolved/javaevolved.github.io/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fjavaevolved%2Fjavaevolved.github.io%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fjavaevolved%2Fjavaevolved.github.io%2Fissues%2Fnew%2Fchoose
brunoborgeshttps://github.com/brunoborges
mainhttps://github.com/javaevolved/javaevolved.github.io/tree/main
copilot/simplify-c-code-javahttps://github.com/javaevolved/javaevolved.github.io/tree/copilot/simplify-c-code-java
Conversation 4 https://github.com/javaevolved/javaevolved.github.io/pull/130
Commits 7 https://github.com/javaevolved/javaevolved.github.io/pull/130/commits
Checks 0 https://github.com/javaevolved/javaevolved.github.io/pull/130/checks
Files changed https://github.com/javaevolved/javaevolved.github.io/pull/130/files
Please reload this pagehttps://github.com/javaevolved/javaevolved.github.io/pull/130/files
Add "Calling out to C code from Java" pattern: JNI vs FFM API https://github.com/javaevolved/javaevolved.github.io/pull/130/files#top
Show all changes 7 commits https://github.com/javaevolved/javaevolved.github.io/pull/130/files
0bb01fc Initial plan Copilot Mar 2, 2026 https://github.com/javaevolved/javaevolved.github.io/pull/130/commits/0bb01fc883bf0374064fe59a2e0389023d79650a
10d4c4a Add call-c-from-java pattern (JNI vs FFM API) Copilot Mar 2, 2026 https://github.com/javaevolved/javaevolved.github.io/pull/130/commits/10d4c4af226ea96a907b2a73dccbe73895997325
109d1fd Update call-c-from-java.yaml brunoborges Mar 3, 2026 https://github.com/javaevolved/javaevolved.github.io/pull/130/commits/109d1fd489172a4fe9472b3bd57f62f70c964f54
48a7ac6 Add call-c-from-java translations for all 12 non-English locales Copilot Mar 3, 2026 https://github.com/javaevolved/javaevolved.github.io/pull/130/commits/48a7ac6285934302d4575b337220635a24033e40
37c1bc9 Add translations for call-c-from-java pattern (all 12 locales) Copilot Mar 3, 2026 https://github.com/javaevolved/javaevolved.github.io/pull/130/commits/37c1bc99f9b026434a66c74669f4668b2a68a794
b15fe84 Merge branch 'main' into copilot/simplify-c-code-java brunoborges Mar 3, 2026 https://github.com/javaevolved/javaevolved.github.io/pull/130/commits/b15fe842150e501b990fd8838589c8d58c1debe4
361f9db Make old and modern code comparable: both call strlen Copilot Mar 3, 2026 https://github.com/javaevolved/javaevolved.github.io/pull/130/commits/361f9db663d32811af2dc07817b977312e98d695
Clear filters https://github.com/javaevolved/javaevolved.github.io/pull/130/files
Please reload this pagehttps://github.com/javaevolved/javaevolved.github.io/pull/130/files
Please reload this pagehttps://github.com/javaevolved/javaevolved.github.io/pull/130/files
call-c-from-java.yaml https://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-4b91c87f0ab38de1621d1b5bf9dc01fec34f72537805793d8067d072c883ca7c
compact-canonical-constructor.yaml https://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-b486eae135eedadf1ed5d7e1dbbf33b340d7e5f620ce3dd22749d1acbbb3c18e
call-c-from-java.yaml https://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-b8555612a4795a0dd4fbc4fe6d011c819312cad91284148445b504000ae50986
call-c-from-java.yaml https://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-3376dd62e3dff457ef49d40f28e46a59846c6c8039c013d1561e0db12642add8
call-c-from-java.yaml https://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-43563695ea0d8873da7b70616f461888e761a90953f7c14295a03f5957db5593
call-c-from-java.yaml https://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-88f7045993389a5aa701acda99ad63baddfec45fbeaf0ec71bef089dbaba689d
call-c-from-java.yaml https://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-8cb16ab6fd3206f01a9bc8ee9aba3bc597b506cc50c9256e4a5666c4e2d0f02b
call-c-from-java.yaml https://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-d1709fe37173eb38c5cf0f0f43496db3863d529817ad939a36f9ac37d6ce017b
call-c-from-java.yaml https://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-da34f6d2ea507a15dc666c2ee7ff8166390af52ce834dd2a3e0c368c4b5aa228
call-c-from-java.yaml https://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-a699480e6485112b6ea431474b92fbda250782bf5efd9092a9fd3d410047b717
call-c-from-java.yaml https://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-9527ae49806f9253a60c42590f959a6c5ffbca35821438d69ebd24c8270741b4
call-c-from-java.yaml https://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-232aa9c3a3efc51581ba8e6e74aecb9a4575cbda56b0bd45e32245cc690da1bd
call-c-from-java.yaml https://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-bd5b4baa42b042ab4cf2065cced897b4156a14a7e757fffc98007eddb32bc927
call-c-from-java.yaml https://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-ea9d20624c76f148729bf1758398435dd0abde7efe7886de09fa008d76c07baf
content/language/call-c-from-java.yamlhttps://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-4b91c87f0ab38de1621d1b5bf9dc01fec34f72537805793d8067d072c883ca7c
View file https://github.com/javaevolved/javaevolved.github.io/blob/361f9db663d32811af2dc07817b977312e98d695/content/language/call-c-from-java.yaml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/javaevolved/javaevolved.github.io/pull/130/{{ revealButtonHref }}
content/language/compact-canonical-constructor.yamlhttps://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-b486eae135eedadf1ed5d7e1dbbf33b340d7e5f620ce3dd22749d1acbbb3c18e
View file https://github.com/javaevolved/javaevolved.github.io/blob/361f9db663d32811af2dc07817b977312e98d695/content/language/compact-canonical-constructor.yaml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/javaevolved/javaevolved.github.io/pull/130/{{ revealButtonHref }}
https://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-b486eae135eedadf1ed5d7e1dbbf33b340d7e5f620ce3dd22749d1acbbb3c18e
https://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-b486eae135eedadf1ed5d7e1dbbf33b340d7e5f620ce3dd22749d1acbbb3c18e
translations/content/ar/language/call-c-from-java.yamlhttps://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-b8555612a4795a0dd4fbc4fe6d011c819312cad91284148445b504000ae50986
View file https://github.com/javaevolved/javaevolved.github.io/blob/361f9db663d32811af2dc07817b977312e98d695/translations/content/ar/language/call-c-from-java.yaml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/javaevolved/javaevolved.github.io/pull/130/{{ revealButtonHref }}
translations/content/bn/language/call-c-from-java.yamlhttps://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-3376dd62e3dff457ef49d40f28e46a59846c6c8039c013d1561e0db12642add8
View file https://github.com/javaevolved/javaevolved.github.io/blob/361f9db663d32811af2dc07817b977312e98d695/translations/content/bn/language/call-c-from-java.yaml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/javaevolved/javaevolved.github.io/pull/130/{{ revealButtonHref }}
translations/content/de/language/call-c-from-java.yamlhttps://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-43563695ea0d8873da7b70616f461888e761a90953f7c14295a03f5957db5593
View file https://github.com/javaevolved/javaevolved.github.io/blob/361f9db663d32811af2dc07817b977312e98d695/translations/content/de/language/call-c-from-java.yaml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/javaevolved/javaevolved.github.io/pull/130/{{ revealButtonHref }}
translations/content/es/language/call-c-from-java.yamlhttps://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-88f7045993389a5aa701acda99ad63baddfec45fbeaf0ec71bef089dbaba689d
View file https://github.com/javaevolved/javaevolved.github.io/blob/361f9db663d32811af2dc07817b977312e98d695/translations/content/es/language/call-c-from-java.yaml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/javaevolved/javaevolved.github.io/pull/130/{{ revealButtonHref }}
translations/content/fr/language/call-c-from-java.yamlhttps://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-8cb16ab6fd3206f01a9bc8ee9aba3bc597b506cc50c9256e4a5666c4e2d0f02b
View file https://github.com/javaevolved/javaevolved.github.io/blob/361f9db663d32811af2dc07817b977312e98d695/translations/content/fr/language/call-c-from-java.yaml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/javaevolved/javaevolved.github.io/pull/130/{{ revealButtonHref }}
translations/content/it/language/call-c-from-java.yamlhttps://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-d1709fe37173eb38c5cf0f0f43496db3863d529817ad939a36f9ac37d6ce017b
View file https://github.com/javaevolved/javaevolved.github.io/blob/361f9db663d32811af2dc07817b977312e98d695/translations/content/it/language/call-c-from-java.yaml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/javaevolved/javaevolved.github.io/pull/130/{{ revealButtonHref }}
translations/content/ja/language/call-c-from-java.yamlhttps://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-da34f6d2ea507a15dc666c2ee7ff8166390af52ce834dd2a3e0c368c4b5aa228
View file https://github.com/javaevolved/javaevolved.github.io/blob/361f9db663d32811af2dc07817b977312e98d695/translations/content/ja/language/call-c-from-java.yaml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/javaevolved/javaevolved.github.io/pull/130/{{ revealButtonHref }}
translations/content/ko/language/call-c-from-java.yamlhttps://github.com/javaevolved/javaevolved.github.io/pull/130/files#diff-a699480e6485112b6ea431474b92fbda250782bf5efd9092a9fd3d410047b717
View file https://github.com/javaevolved/javaevolved.github.io/blob/361f9db663d32811af2dc07817b977312e98d695/translations/content/ko/language/call-c-from-java.yaml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/javaevolved/javaevolved.github.io/pull/130/{{ revealButtonHref }}
Please reload this pagehttps://github.com/javaevolved/javaevolved.github.io/pull/130/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.