Results 1 to 10 of 10
Thread: Importing a web library
- 04-24-2011, 02:04 AM #1
Importing a web library
Hey,
I am trying to write an IRC Bot that automatically translates Portuguese to English.
However, importing the library gives me the following error:
Code:Java Code:package com.google.api.translate.* does not exist
This is the code that uses the library:Java Code:import com.google.api.translate.*;
I have never worked with web libraries and therefore don't know how to use them.Java Code:if (line.contains("TFM") && (line.contains("br") || line.contains("BR"))) { Translate.setHttpReferrer(server); String translatedText = Translate.execute(line.substring(lastIndexOf("]") + 1), Language.PORTUGUESE, Language.ENGLISH); writer.write(toChan + translatedText + "\r\n"); }
Thanks for your help!
-
Do you have the library in your class path?
- 04-24-2011, 02:11 AM #3
-
Yeah, import doesn't do much if the library is not present and recognized by the compiler.
Please have a look here: PATH and CLASSPATH (The Java™ Tutorials > Essential Classes > The Platform Environment)
and here: http://download.oracle.com/javase/tu...r/downman.html
- 04-24-2011, 02:29 AM #5
Hmm, I'm obviously doing something wrong.
-
are you using an IDE?
- 04-24-2011, 02:35 AM #7
I'm using NetBeans
-
then check out the netbeans help files on how to add libraries to a project's build path.
- 04-24-2011, 03:04 AM #9
Ah, I figured it out. I had to download a .jar file. What a mess, but at least now I know how to do it in the furture. Thanks for your help!
-
I didn't do much, but glad you figured it out! Best of luck with your project!!
Similar Threads
-
Importing a cvs library
By malaguena in forum New To JavaReplies: 2Last Post: 03-14-2011, 11:48 PM -
importing a library into my program
By sniffer139 in forum NetBeansReplies: 1Last Post: 03-22-2010, 01:29 PM -
I want to put the native library in library path in mac os x
By Hussain Ali in forum Advanced JavaReplies: 2Last Post: 02-24-2010, 07:55 AM -
Importing JXL API
By ryanlbowen in forum New To JavaReplies: 0Last Post: 07-17-2009, 07:17 PM -
Tell me jar file for library library org.bouncycastle.cms
By 82rathi.angara in forum New To JavaReplies: 10Last Post: 09-09-2008, 05:11 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks