• 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

complete java desktop app GUI, to send email only inserting To,From,Subject,Message and press SEND

 
Ranch Hand
Posts: 403
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
you know any [b]ready made [/b](url) complete java desktop app GUI, to send email only inserting To,From,Subject,Message and press SEND?
How I change a from a frame to a second frame in GUI Java app, when send email appear only the word SUCCESS / FAILED after procedure completed?

What is java equivalent (Tell me code (1)Java and another script (2)JSP) of PHP's Code below:
[u]function:[/u] get text file on internet contents, and search for string...
[code]
<?php
$start_url = "http://www.l-www-design.com/index.php";

$search_string = "http://www.pafoscarhire.com";

# get the file contents
$str = @file_get_contents( $start_url );

$number=substr_count($str,$search_string);

// http://www.paphoscarhire.mobi/Reciprocals/Reciprocals/index.php
echo $number;

?> [/code]
 
reply
    Bookmark Topic Watch Topic
  • New Topic