-
1. Re: How to setup java extract api in Linux
Dmitry ChirkovAug 6, 2016 8:50 PM (in response to Shanmukha Rao Tarlana)
I've noticed lack of detailed "how to set everything up" documentation myself however as with most SDKs I guess it assumes both working knowledge of your target OS and development language of your choice.
I've just went though this on Mac but I didn't expect Tableau documentation to explain how to compile .java files or how to run compilation results after.
What specifically are you having problems with?
Compiling .java files is not Tableau specific - if you have Java on your machine then all you have to do is to run javac to compile .java file:
javac -cp "../Java/*" com/tableausoftware/demos/MakeOrder.java
Then run it:
java -cp ".:../Java/*" com.tableausoftware.demos.MakeOrder
That's it.
-
2. Re: How to setup java extract api in Linux
Shanmukha Rao Tarlana Aug 15, 2016 3:27 PM (in response to Shanmukha Rao Tarlana)As I mentioned, I am looking for environment setup like path setting to recognize the sdks libraries but not how to compile my code.
In mac, I have copied files to Library/Framework folder. And looking for similar configuration in linux.
However I did some research and found the details. Rather explain to you multiple times.
-
3. Re: How to setup java extract api in Linux
Dmitry ChirkovAug 15, 2016 3:58 PM (in response to Shanmukha Rao Tarlana)
Did you read this yet?
http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html
It's mentioned here.