|
The title pretty much explains it. If JavaScript is not derived from Java, why does it have "Java" in the name?
Started by Matthew on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
But it actually has nothing to do with Java deal between Netscape....
"The language's name is the result of a co-marketing and then became JavaScript when Netscape and Sun got together.
Java is to Javascript what Car is to Carpet.
|
|
Let me refrase it. i am writing a new http-server using sockets in java-language(not javascript) and i want to tell client to set cookie. I would like to do that in javascript(setin reading the cookie). If that is not possible, Are there other solutions...
Started by Farah on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Are you really not confusing JavaScript with Java itself or maybe JSP ? Or are you using server-side JavaScript? Why would you like to do HTTP Server or Apache Tomcat ?
At least, in ....
Your question/requirement is extremely vague.
|
|
Hi,
I'm creating a GWT wrapper round a JavaScript library. One of the JavaScript functions takes an anonymous object as its argument e.g.:
obj.buildTabs({ hide: true, placeholder: 'placeholder' });
On the Java side how do I create this type of JavaScript...
Started by Supertux on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Also check out Google Plugin for Eclipse.
You can pass parameters between JavaScript and Java world.
|
Ask your Facebook Friends
|
Hi, i want to convert HTML (having javascript ) to PDF..
how i can do that ??
i just want to show what is being shown in web page ... like my scenerio is . i am displaying a gantt chart that is generated by javascript library .. now i want to save that...
Started by g.revolution on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
We are also looking ....
This way any JavaScript included in the page is processed from that.
Http://www.adobe.com/devnet/acrobat/javascript.html
You can use iText for Java to convert to PDF utilize a PDF Printer Driver , like PDFCreator .
|
|
I want to run JavaScript code at the server side. I want to manipulate result returned by JavaScript inside my Java code. How can it be done?
Answer Snippets (Read the full thread at stackoverflow):
The normal way to let JavaScript access Java Java....
You need a JS runtime in the way how JS/Java is supposed to work in webapplications.
You execute the JavaScript with Rhino , a JavaScript library for Java.
|
|
I am writing a standalone application in Java that needs to be able to call custom Javascript APIs? Is there a way to call custom Javascript APIs in Java?
Started by stjowa on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Aside from the name, javascript and java have no relationship.
Should be possible by using Rhino.
|
|
We need an accurate diff utility for Java and Javascript files, written in Java. It should be invokable from within an Eclipse (version 3.2 or 3.3) application. Preferably we need the Java source code for this utility also.
The utility should be able ...
Answer Snippets (Read the full thread at stackoverflow):
Have you looked into using and/or extending that (it's opensource)? I would not think that adding some statistics reporting to the existing plug-in would be all that difficult... .
Eclipse has a very good diff/compare plugin installed by default .
See Diffj.
|
|
If I can do this, how do I call Java code (methods for instance) from within JavaScript code, in Wicket.
Started by AndreiC on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
For example....
Javascript in a browser to interact with Java on a server and helps you manipulate web pagesAssuming you mean JavaScript running on the client - you cause an HTTP redirect to be made from wicket components in java.
|
|
What's the equivalent of Java's Thread.sleep() in Javascript?
Started by Niger on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Here are a couple of other ....
There's no direct equivalent, as it'd pause a webpage loop), since your browser is almost certainly executing your JavaScript in a single-threaded environment.
And does not invoke javascript's eval function.
|
|
I want to find the RSA code in both Javascript and Java code. And they can return the same result in encrypt and decrypt.
My purpose is: I can encrypt a message in the user's browser using Javascript (with the public key). After I can decrypt that message...
Started by haicnpmk44 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I am curious why the javascript and java had different results the source code for Java and Javascript would be useful to see, or at least to know how the keys were.
Just use SSL and be done with it.
Directly.
|