Click here to Skip to main content
15,887,267 members
Home / Discussions / Java
   

Java

 
AnswerRe: Guide me in right direction to learn Java Card Pin
Anushkasharma105-Jul-18 21:17
Anushkasharma105-Jul-18 21:17 
AnswerRe: Guide me in right direction to learn Java Card Pin
Hackr.io27-Jul-18 2:20
professionalHackr.io27-Jul-18 2:20 
QuestionJava C header dll [SOLVED] Pin
Valentinor6-Jun-18 22:06
Valentinor6-Jun-18 22:06 
AnswerRe: Java C header dll Pin
Richard MacCutchan6-Jun-18 22:19
mveRichard MacCutchan6-Jun-18 22:19 
GeneralRe: Java C header dll Pin
Valentinor6-Jun-18 22:24
Valentinor6-Jun-18 22:24 
GeneralRe: Java C header dll Pin
Richard MacCutchan6-Jun-18 22:28
mveRichard MacCutchan6-Jun-18 22:28 
GeneralRe: Java C header dll Pin
Valentinor6-Jun-18 22:46
Valentinor6-Jun-18 22:46 
GeneralRe: Java C header dll Pin
jschell9-Jun-18 7:00
jschell9-Jun-18 7:00 
Most people will not go to a site to look at your code.

First, using a native library in Java is dangerous. It is not something I will ever do again because if the native library fails it causes the VM to exit and that is not viable in server developer. You can achieve the same functionality using an external executable and accessing via any number of methods such as stdin/out, files, sockets or even running it as a true service (http, rest, etc)

Second the requirement for a accessing a native library in java
1. The native library must be loaded into the VM
2. The definition must match EXACTLY with the expected classes in the native library. Changes to packages, methods, parameters, access, etc, all require regenerating the api, recompiling and building a new native library.

It is possible to validate that a native library loads (1 above) and this should ALWAYS be verified. Methods should be wrapped in a proxy class so that that mismatches (2) can be captured an properly reported as being mismatches.

Valentinor wrote:
only 1 character differs.


Nothing can be different.
GeneralRe: Java C header dll Pin
Valentinor9-Jun-18 10:38
Valentinor9-Jun-18 10:38 
QuestionConsole javac -h errors [SOLVED] Pin
Valentinor6-Jun-18 7:23
Valentinor6-Jun-18 7:23 
AnswerRe: Console javac -h errors Pin
Richard MacCutchan6-Jun-18 11:18
mveRichard MacCutchan6-Jun-18 11:18 
GeneralRe: Console javac -h errors Pin
Valentinor6-Jun-18 20:35
Valentinor6-Jun-18 20:35 
GeneralRe: Console javac -h errors Pin
Valentinor6-Jun-18 21:08
Valentinor6-Jun-18 21:08 
GeneralRe: Console javac -h errors Pin
Richard MacCutchan6-Jun-18 21:50
mveRichard MacCutchan6-Jun-18 21:50 
GeneralRe: Console javac -h errors Pin
Valentinor6-Jun-18 22:01
Valentinor6-Jun-18 22:01 
GeneralRe: Console javac -h errors Pin
Richard MacCutchan6-Jun-18 22:18
mveRichard MacCutchan6-Jun-18 22:18 
GeneralRe: Console javac -h errors Pin
Valentinor6-Jun-18 23:02
Valentinor6-Jun-18 23:02 
AnswerRe: Console javac -h errors SOLUTION Pin
Valentinor6-Jun-18 23:27
Valentinor6-Jun-18 23:27 
Questioncounting hand fingers in an image Pin
User 138227701-Jun-18 16:26
User 138227701-Jun-18 16:26 
AnswerRe: counting hand fingers in an image Pin
Richard MacCutchan2-Jun-18 0:22
mveRichard MacCutchan2-Jun-18 0:22 
Questionhow to start learning java Pin
Member 1383037827-May-18 23:23
Member 1383037827-May-18 23:23 
AnswerRe: how to start learning java Pin
Richard MacCutchan28-May-18 22:16
mveRichard MacCutchan28-May-18 22:16 
QuestionNeed help choosing test API Pin
Member 1384132023-May-18 8:37
Member 1384132023-May-18 8:37 
QuestionMessage Closed Pin
10-May-18 0:44
Andrew Steves10-May-18 0:44 
AnswerRe: Error in Integer mode Pin
Richard MacCutchan10-May-18 1:16
mveRichard MacCutchan10-May-18 1:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.