Win a copy of Getting started with Java on the Raspberry Pi this week in the Raspberry Pi forum!
  • 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
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Jeanne Boyarsky
Sheriffs:
  • Rob Spoor
  • Devaka Cooray
  • Liutauras Vilda
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Piet Souris

help with developing a basic java program and algorithm for a program i am working on

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I want to develop an executable java program that, when opened, floats over a web-page; a GUI with tabs combo boxes and the like. The purpose of this program is to fill a webpage TEXT-BOX OR MESSAGE-BOX with any information you want, similiar to autofill in Google Chrome.

I'll figure out how to hammer out the code in the coming days, but what I need from you, within the community, is how to implement this program. The program, when launched, will will be a small gui window which will allow you to append data from what's displayed in your program window directly into a webpage textbox you select, with just a button click, or similar event.

My next question is how do I encompass a small database (used for storing and retrieving data)within my little java coded executable? The user won't have to physically link to Access, Exel and the like. He or she would install my program and the data storage and manipulation would be handled entirely by my program (executable).

If you have developed similar algorithms for similar ideas, please let me know - I would appreciate it.

Thanks for your time and help,

Abayomi
 
Bartender
Posts: 2700
IntelliJ IDE Opera
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
That is a huge undertaking you're suggesting here. Communication with other applications can be tricky. Further you're describing a concept and not really a design/implementation/something concrete. You'll need to decide which browsers to support, how to interact with those applications, have a general design and probably a proof of concept. Without those I find it unlikely that you'll get much support from the community.

About the database, what do you need? And do you really need a database? Can't a simple file be enough?
 
Robert Perkins
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
thanks!!
 
Robert Perkins
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
also, could I use a text file as a form of data storage?
 
lowercase baba
Posts: 13089
67
Chrome Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Robert Perkins wrote:also, could I use a text file as a form of data storage?

Yes. it may not be the best choice, but you certainly could.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic