• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

javascript inside java

 
Ranch Hand
Posts: 106
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hello, i am using javascript inside java, that is i have a swt browser and i just use browser.execute ("<javascript code>"); i have this problem though, i have this string in java which i want to pass to my javascript string to be executed in browser.execute ("<javascript code>"), how do i do this? for example i have:

void main () {
Browser browser;
String x = "hello";

String commandToRun = "document.write ('hello');\r\n";
browser.execute (commandToRun);
}

what if i want my commandToRun be equal to "document.write (x)" but still, x would be a String holding the value "hello"? how do i insert my java String into my javascript? thanks!!!
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
place script tags around the code you want to execute

Are you asking how to append to a string with Java or placing the Java String into a JavaScript string?

Eric
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic