Can anybody explain what does JdClient is in this code:
public JdClient client = new DefaultJdClient("some args")
and how to implement this in python with Jpype
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It creates a
publicvariable namedclientof typeJdClientby calling theDefaultJdClientconstructor with some arguments.To use it in Python would be something along these lines, although can’t be certain as I just did a cursory glances over the documentation, and I have no idea where JdClient comes from so there might be a need to import that Java library and reference it as needed, like one would do
java.lang.System.out.println('hello world')