Results 1 to 5 of 5

Thread: application needed that should let users input blurbs

  1. #1
    Join Date
    Mar 2011
    Posts
    6

    Exclamation application needed that should let users input blurbs

    that's the problem i got

    The application should let users input blurbs of text and categorize them through tagging.
    Users can also search by tag, and grouping tags of close meaning together.
    Your application should cover the following options:
    1) Add Blurb
    2) Tag a Blurb
    3) Remove Tag from a Blurb
    4) Search by Tag
    For example:
    ---> 1
    Blurb: Now is the time for all good men to come to the aid of the
    party.
    ---> 2
    Select a blurb:
    0) Now is the time for all good men to come to the aid of the party.
    Blurb: 0
    Tag to add: funny
    ---> 2
    Select a blurb:
    0) Now is the time for all good men to come to the aid of the party.
    Blurb: 0
    Tag to add: historic
    ---> 3
    Select a blurb:
    0) Now is the time for all good men to come to the aid of the party.
    Blurb: 0
    Tag to remove: historic
    Tag removed.



    please help the deadline is soon ! :/

  2. #2
    Join Date
    Dec 2007
    Posts
    2,291

    Re: application needed that should let users input blurbs

    I would suggest that custom form, would be probably the best choice - I don't like the inputboxes much, I must confess, they offer nothing with regards to validation, which you can easily get through creating a small form. Why don't you just create a small pop up (modal) form that looks just like an Input Box?

  3. #3
    Join Date
    Mar 2011
    Posts
    6

    Re: application needed that should let users input blurbs

    i didn't get it ....

  4. #4
    Join Date
    Mar 2011
    Posts
    6

    question Re: application needed that should let users input blurbs

    btw it's java code assignment
    i need a java code :/

  5. #5
    Join Date
    Jan 2006
    Posts
    605

    Re: application needed that should let users input blurbs

    By following the below example of the code, you can read user input in a Java application:

    Code:
    package com.tctalk.myapp.java.src;
     
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
     
    /**
    * ReaduserInput.java - [This code reads the user input data from command prompt]
    * 
    * @author TechCuBeTalk.com
    * @version 1.0
    */
    public class ReaduserInput {
     
        public static void main(String[] args) {
     
            //  Ask the user to enter their name 
            System.out.print("Please enter your name: ");
     
            //  To read user input create a reader object
            BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
     
            String userName = null;
     
            //  read the user input from command prompt by readLine() method
            try {
                userName = br.readLine();
            } catch (IOException ioExcption) {
                System.out.println("IO exception occurred!");
                System.exit(1);
            }
     
            System.out.println("Welcome " + userName + "!! Have a Good day!!");
     
        }
     
    }

Similar Threads

  1. End user input needed for proper SATA speed database in OCZ SSD
    By Anuja Darzi in forum Hardware Peripherals
    Replies: 8
    Last Post: 13-04-2012, 02:39 PM
  2. GPS Status application needed
    By Quinton in forum Portable Devices
    Replies: 5
    Last Post: 08-05-2010, 10:11 AM
  3. Backup application needed for Apple
    By Nathen in forum Windows Software
    Replies: 5
    Last Post: 09-02-2010, 01:54 PM
  4. Detect users of a application
    By Remedy in forum Software Development
    Replies: 5
    Last Post: 03-02-2010, 12:53 AM
  5. Replies: 4
    Last Post: 16-01-2010, 07:55 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,584,747.90573 seconds with 17 queries