Loading data and printing it out in graphic mode(is it possible)

if you are in graphic mode and you have a nice back ground and loader and stuff is it possible to load a pile and post it on screen? i want to know and if u can post a little code
i also use netbeam so if its possible it would be easy
here is a working loaded but just black and white
//Readlogin.java
import java.util.*;
import java.io.*;
import java.awt.*;
import javax.swing.*;
public class Readlogin
     public static void main(String[] args)
          FileOutputStream out;
          PrintStream p = null;
          boolean quit = false;
          String fileName = "", fileLine = "", date = "", classes = "";
          Scanner file = null;
          Scanner s = new Scanner(System.in);
          double exitword, sample;
          while (!quit)
               System.out.print ("Enter a filename: ");
               fileName = s.nextLine();
               if (fileName.equals("quit"))
               System.exit(0);
               else
          try
               file = new Scanner(new File(fileName));
          catch (FileNotFoundException e)
               System.out.println (fileName + " not found!");
               //System.exit(-1);
          while (file.hasNext())
               fileLine = file.nextLine();
               System.out.println(fileLine);
}ty
Edited by: kingryanj on Feb 28, 2008 5:37 PM

first this is not home work, my school website is www.mrdig.net, im in imc3 or whatever class and im done work for the year this is for my own stuff
i ment this is my reader file //logtest.java
import java.util.*;
import java.io.*;
import java.awt.*;
import javax.swing.*;
public class logtest
     public static void main(String[] args)
          FileOutputStream out;
          PrintStream p = null;
          boolean quit = false;
          String fileName = "", fileLine = "", date = "", classes = "";
          Scanner file = null;
          Scanner s = new Scanner(System.in);
          double exitword, sample;
          System.out.print ("Enter the date: ");
          date = s.nextLine();
          while (!quit)
               System.out.print ("Enter a filename: ");
               fileName = s.nextLine();
               if (fileName.equals("quit"))
               System.exit(0);
               else
          try
               out = new FileOutputStream(fileName, true);
               p = new PrintStream( out );
          catch (Exception e)
               System.out.println ("Error writing to file");
               System.exit(-1);
          System.out.print ("What classes are you doing? : ");
          classes = s.nextLine();
          p.print( date + " ");
          p.print(classes + " ");
          p.println ( "" );
          p.close();
}i want to know if you can load a file and print the data on screen in graphic mode, because i just want this to look more flashy, i have the actualy log in working with graphics (ty netbean) and i want to know if netbean can help with this

Similar Messages

  • Copy Business content cube, load data and activation.

    Hi BW gurus,
    I am new to SAP BW. Like to know if you guys have any document of your own or at some site which gives me step by step instructions to copy , load data and activate a cube of business content(ex: Purchasing data 0PUR_C01).
    I will assign points to the good answers.
    You can also send me any documents you have on my email id: [email protected]
    Thanks.
    Syed Arifuddin.

    1. Yes. Preparation - Connectivity between R/3 and BW and general setting is Basis team and Security or Authorization team work.
    2. Customizing the Extractors. Extractors are programs to extract data from SAP R/3. You may need to customized those to fit your requirement. This requires little ABAP skill. You can check more information here.. http://help.sap.com/saphelp_nw04/helpdata/en/7a/27bcf087c7464db8b95eaa717b6e6a/content.htm
    3. Set Application Active Indicator : This step is to be carried out in the R/3 system.This is not just a Purchasing related but it is a Cross-client application setting to link tow clients.
    Hope this helps.
    Laxmikant

  • Can I use Acrobat 11to download pdf that only allows me to read, enter data, and print?

    I need to complete gov. forms available online as pdf.  I can review, enter data and print, but I cannot save to my computer or anywhere else.  I need to be able to save so I can return to the form and enter information as I access it.  Can this be done if I purchase Acrobat 11 and, if so, can I get the Standard edition?  I currently only have Reader.

    Yes, if you upgrade to at least Acrobat Standard you will be able to save. Since you can't save with Reader (assuming 11), the forms are probably XFA forms (created with LiveCycle Designer), which must be Reader-enabled in order to be saved with Reader. Reader 11 can save non-enabled AcroForms (forms created with Acrobat), but not non-enabled XFA forms. If you have a Reader version prior to 11, try using Reader 11 to see if it will save.
    If you can provide a link to one of the forms, I can tell you for sure what the minimum requirement for saving is.

  • HT4356 My iPad does not find the printer. I have tried the HP app and it works, but in any other app the printer is not seen. How do I get this printer visible to the iPad. All my other network computers find and print with out a problem.

    My iPad does not find the printer. I have tried the HP app and it works, but in any other app the printer is not seen. How do I get this printer visible to the iPad. All my other network computers find and print with out a problem.

    hi
    could you tell us what the other app is please

  • How to load date and time from text file to oracle table through sqlloader

    hi friends
    i need you to show me what i miss to load date and time from text file to oracle table through sqlloader
    this is my data in this path (c:\external\my_data.txt)
    7369,SMITH,17-NOV-81,09:14:04,CLERK,20
    7499,ALLEN,01-MAY-81,17:06:08,SALESMAN,30
    7521,WARD,09-JUN-81,17:06:30,SALESMAN,30
    7566,JONES,02-APR-81,09:24:10,MANAGER,20
    7654,MARTIN,28-SEP-81,17:24:10,SALESMAN,30my table in database emp2
    create table emp2 (empno number,
                      ename varchar2(20),
                      hiredate date,
                      etime date,
                      ejob varchar2(20),
                      deptno number);the control file code in this path (c:\external\ctrl.ctl)
    load data
    infile 'C:\external\my_data.txt'
    into table emp2
    fields terminated by ','
    (empno, ename, hiredate, etime, ejob, deptno)this is the error :
    C:\>sqlldr scott/tiger control=C:\external\ctrl.ctl
    SQL*Loader: Release 10.2.0.1.0 - Production on Mon May 31 09:45:10 2010
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Commit point reached - logical record count 5
    C:\>any help i greatly appreciated
    thanks
    Edited by: user10947262 on May 31, 2010 9:47 AM

    load data
    infile 'C:\external\my_data.txt'
    into table emp2
    fields terminated by ','
    (empno, ename, hiredate, etime, ejob, deptno)Try
    load data
    infile 'C:\external\my_data.txt'
    into table emp2
    fields terminated by ','
    (empno, ename, hiredate, etime "to_date(:etime,'hh24:mi:ss')", ejob, deptno)
    this is the error :
    C:\>sqlldr scott/tiger control=C:\external\ctrl.ctl
    SQL*Loader: Release 10.2.0.1.0 - Production on Mon May 31 09:45:10 2010
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Commit point reached - logical record count 5
    C:\>
    That's not an error, you can see errors within log and bad files.

  • How do you get a list of your contacts nick names and their phone numbers on line and print them out?

    How do you get a list of your contacts nick names and their phone numbers on line and print them out?  I've been trying to figure out how to get the list to print out but I can't even find a complete list to view on Verizon's web site.  Does anyone know how to do this?

    Log into your online account. In the, 'I want to', box type, Manage Contacts.
    Place your cursor over any contact, a pop screen will appear with the option to print your contacts

  • How to remove unnecessary data and print only the required data in JSP

    Hi all
    The following output is from TCP/IP connection of RFID Reader.
    Connected to: /192.168.0.3
    EVT:DCE DCEVERSION 3.2.0.0
    EVT:DCE READER IM5 RFID Reader Ver 3.29
    EVT:DCE READERINFO Basic Reader Interface Version Q
    EVT:DCE READERINFO FCC 915Mhz
    EVT:DCE READERINFO Copyright (C) 2002-2006 Intermec Technologies Corp.
    EVT:DCE FIXEDATTRIB CHKSUM=OFF
    EVT:DCE FIXEDATTRIB TTY=OFF
    EVT:DCE FIXEDATTRIB ECHO=OFF
    OK>
    EVT:TAG H02000031323334000151E62B 1 1
    EVT:TAG H02000031323334000151B775 1 1
    For my JSP case I have converted above output's program in javabean I want to print only tagID and other values in a table in my JSP page. Could anybody let me know how to ignore the unnecessary data and print only values after EVT:TAG in three columns and rows, besically rows are not fixed because it depends on reader how many tags it detects?
    Thanx
    kvijai

    Hi,
    Try this
    private function doFilter(item:Object):Boolean
         var searchString:String = myTextIp.text.toLowerCase();
         if (item.name.search(searchString) == 0)
         return true;
              else
         return false

  • How do I store 4 hours of data and get it out of the "while loop" into a spreadshee​t file for documentin​g purposes? "See additional Text for additonal info"

    What a have is a VI that uses the following SUbvi's, starts with FP OpenVI, then FP Create TagVI, into a "While Loop" which contains a FP ReadVI outputting data into a Index ArrayVI outputting to a Display (DBL). This shows the output of a FP-AI-100 monitoring a 9v battery. I have to monitor this battery for a 4 hour period my problem is storing the 4 hours of data and getting it out of the "while loop" into a "Write to Spreadsheet File VI" all I seem to accomplish is just one data sample which I get into a spreed ship file with no problem. I just can't get 4 hours worth. By the way this is my first VI and I'm self
    trained so have mercy.

    I figured it out thanks.
    John Morris
    Glendinning Marine

  • How do I store 4 hours of data and get them out of the "while loop" into a spreadsheet file for documenting purposes? "See additional Text for additonal info"

    What a have is a VI that uses the following SUbvi's, starts with FP OPENvi, then FP Create Tagvi, into a "While Loop" which contains a FP READvi outputting data into a INDEX ARRAYvi outputting to a Display (DBL). This shows the output of a FP-AI-100 monitoring a 9v battery. I have to monitor this battery for a 4 hour period my problem is storing the 4 hours of data and getting it out of the "while loop" into a "Write to Spreadsheet File vi" all I seem to accomplish is just one data sample which I get into a spreed ship file with no problem. I just can't get 4 hours worth. By the way this is my first VI and I'm sel
    f trained so have mercy.

    I figured it out Thanks.
    John Morris
    Glendinning Marine

  • I have a problem with my mac, lit with blank screen loading bar and then goes out, I need assistencia on line or contact the Technical Support Service in Argentina

    I have a problem with my mac, lit with blank screen loading bar and then goes out, I need assistencia on line or contact the Technical Support Service in Argentina

    Priscilla,
    if your Mac is still in warranty, then you should contact the Argentinian technical support service. If it is out of warranty, then we can try to lend a hand. (We’re just fellow Apple product users here.)

  • Iphone 5 stuck on connect to itunes screen- if i try and get it out of recovery mode it trys to extract the data and then says the phones memory is full

    iphone 5 stuck on connect to itunes screen- if i try and get it out of recovery mode via itunes,  it trys to extract the data and then says the phones memory is full- cant seem to get it sorted, any ideas? I have an ipad mini if that helps?!

    Hey craigfromsheffield,
    I would suggest that you use the following information in order to help you resolve this issue:
    If you can't update or restore your iOS device
    http://support.apple.com/kb/HT1808
    Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • I scanned an old image using my Epson NX515 printer, used GIMP to make some minor repairs on the image and printed it out.  I noticed there were a number of evenly spaced thin blue lines across the image, approximately six of them.

    I scanned an old image using my Epson NX515 printer, used GIMP to make some minor repairs on the image and printed it out.  I noticed there were a number of evenly spaced thin blue lines across the image, approximately six of them. I opened & printed the image on my PC using PAINT.NET.  No lines appeared. I sent the image to my daughter. She printed it and found no lines. I printed the image using Seahorse on my Mac and the lines still appeared. I used basically the same print settings on Mac and PC.

    maahes wrote:
    did so now, only now I'm getting a slightly different error: could not find udevd no such file or directory. I checked both grub.cfg's and my mkinitcpio.conf and there's no listing for udevd ....which I've never heard of, so I assumed it was a typo?
    For clarification: udev is in the mkinitcpio.
    I'm not sure whether I yet have a good intuition for how you have your machine set up, but I suspect you need to include a cryptdevice flag to the kernel in your grub config. The file isn't found because the kernel doesn't know your root directory needs decrypting first.
    My setup is an LVM over LUKS over LVM sandwich. To boot into my system, the grub.cfg contains the line:
    linux /vmlinuz-linux root=/dev/mapper/cryptvg-root cryptdevice=/dev/mapper/vg-crypt:root rootfstype=ext4 pcie_aspm=force acpi_osi=Linux acpi_backlight=vendor i915.i915_enable_rc6=1 i915.i915_enable_fbc=1 i915.lvds_downclock=1 ro
    Now, most of those flags don't have anything to do with your problem, but note the cryptdevice. It tells the kernel it's dealing with an encrypted filesystem sitting in a logical volume called crypt on a volume group called vg. The bit after the colon tells the kernel to associate this encrypted filesystem with /dev/mapper/root.
    As for how to fix your system, I'm afraid I still feel a bit fuzzy about how your LVM and encrypted layers relate to each other, whether you have LVM over LUKS, or LUKS over LVM, or something else. Was there a particular how-to that you followed?

  • 10)example of errors while loading data and how do u resolve them?

    )example of errors while loading data and how do u resolve them?

    hai ram reddy this is ramprasad reddy....u can get this type of most commen errors....like below
    As the frequent failures and errors , there is no fixed reason for the load to be fail , if you want it for the interview perspective I would answer it in this way.
    a) Loads can be failed due to the invalid characters
    b) Can be because of the deadlock in the system
    c) Can be becuase of previuos load failure , if the load is dependant on other loads
    d) Can be because of erreneous records
    e) Can be because of RFC connections.....(sol: raise the ticket to BASIS team to provide the connection)
    f)can be coz of missing master data.
    g)can be coz of no data found in the source system.
    h)Time stamp error........(sol: activate the data source and replicate the data source and load)
    i)Short dump error.........(sol: delete the request and load once again)
    j)Data locking when loading in parallel.
    k)ODS activation failures.
    l)No SID found........(sol: should load masterdata before transaction data)

  • Can you backup phone contacts and print them out?

    Are you able to view contacts and print them out?

    settings - icloud - contacts - on
    then log into icloud.com - contacts

  • I want to make address labels and print them out. Does anybody know of a word processing program for Mac that would do this?

    I want to make address labels and print them out. Does anybody know of a word processing program for Mac to accomplish this?

    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"?

Maybe you are looking for

  • Error while doing GR in third party process

    Dear Friends, While doing Third party process, at GR (w.r.t. inbound delivery) the following message appears “Purchase order 4500000087 has no items” and stops creating GR. But the P.O has the Item. Do have any clue? Thanks, Hari.

  • Having to update apps more than once

    When I launch the app store (Lion 10.7.1) and go to updates, it shows me which apps need updating so I proceed to update.  After installation I quit the app store but if I launch the app store again, say 10 minutes later, the very same apps are liste

  • Intra & inter company stock transfer

    Hi, Can some body give me the steps for doing  Intra and inter company stock transfer. Thanks in advance , sneha

  • Generic HTTP URL For Multiple Interfaces

    Hi All, Please suggest on the following requirement. I am using PI 7.31 Single stack (Java only version). There are multiple HTTP to Proxy interfaces and each interface has different source structure. The requirement is --- How to utilize a single HT

  • Uploading signature in to sapscript window

    To upload signature I used Import Graphics in sapscript window. It's working fine in dev system. But when I moved to Production the signature is not coming. I had only one transport created for sapscript change.    Can you please let me know why it's