• 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

Files on multiple laptops and when docked will update a master file.

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am looking for a little direction. We have dozens of laptops at work which we use in the field. I am looking for the easist way for the user to use a JAVA application in the field that will write the data to a file on each individuals laptop. Upon docking the laptop, the information on each laptop of each individual will update a master file on a server. Is this possible with JAVA or will this take some other kind of language? I have written the application and I can write the file to the laptop. Because of security, does JAVA have the capability to access the server and compare for changes and upload updated information to it on which I will be able to use Excell to access the CSValues?
Ben Sanchez
 
(instanceof Sidekick)
Posts: 8791
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Welcome to the ranch!

Java should do fine. Check the Sun Networking Tutorial for options like raw sockets, HTTP form-like post, or XML over HTTP.
 
Stan James
(instanceof Sidekick)
Posts: 8791
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey, did that match your problem at all? The things I suggested all need a "server" program on the server machine. You could write a little one just for this purpose in no time. Were you hoping for something just involving file systems and not a Java server?
 
reply
    Bookmark Topic Watch Topic
  • New Topic