Still not solve reading a file problem

members here i s a bug which is not yet solved as per my littele knowledge it doesnot read the documents content and prints it on command line any input from is most apprciated
her is code
import java.io.*;
class read
public static void main(String args[]) throws IOException
     String line;
     String[] full=new String[10];
     int count=0;
     FileInputStream fis=new FileInputStream("sampledocument.doc");
     DataInputStream input= new DataInputStream("fis");
     while((line= input.readLine())!=null)
          System.out.println("line");
          count++;
          full[count]=line;
error given is
javac read.java
read.java:11: cannot find symbol
symbol :construtor DataInputStream(java.lang.String)
location:class java.io.DataInputStream
     DataInputStream input = new DataInputStream("fis");
Note :read.java uses or overrides a deprecated API.
Note :Recompile with -Xlint:deprecation for details.
1 error.

but still by removing quotes i am not getting out put here is modified code
import java.io.*;
class read
public static void main(String args[]) throws IOException
     String line;
     String[] full=new String[10];
     int count=0;
     FileInputStream fis=new FileInputStream("sampledocument.txt");
     DataInputStream input= new DataInputStream(fis);
     while((line= input.readLine())!=null)
          System.out.println("line");
          count++;
          full[count]=line;
it creates out put on single line as "line " where as in original text i have written i mean to say in text file
when going gets tough ,ough gets going.

Similar Messages

  • Does Monitor still not support reading accounting files?

    Since GroupWise 8 my monitor does not process any gateway accounting
    files. In GroupWise 7 this was a great feature - ecspecially if you
    want to do some advertizing why the monitor is so helpful.
    There is only one very old TID telling us has been reported to
    developement. Reporting is not enough - pls fix it.

    Diethmar,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Hi there, I need to be able to read raw files from an Olympus Stylus 1 via CS5 and Lightroom 4.  I have downloaded Raw file plug-in v 6.7.1 but still can't read the files.

    Hi there, I need to be able to read raw files from an Olympus Stylus 1 via CS5 and Lightroom 4.  I have downloaded Raw file plug-in v 6.7.1 but still can't read the files?

    Read this table http://helpx.adobe.com/creative-suite/kb/camera-raw-plug-supported-cameras.html
    The Olympus Stylus 1 was first supported in Camera Raw 8.3 which is only compatible with CS6 and CC.
    It is not compatible with CS5 or older and never will be.
    If you do not want to upgrade to CS6 or CC then you can dwonload the free Adobe DNG converter, convert all Stylus 1 Raw files to DNGs then edit the DNGs in CS5.
    Camera raw, DNG | Adobe Photoshop CC

  • Have downloaded flip4mac to watch .avi files on quicktime but still not able to access files. Any suggestions? Thanks L

    have downloaded flip4mac to watch .avi files on quicktime but still not able to access files. Any suggestions? Thanks L

    Flip4Mac plays Windows Media content, not AVI content. The codec needed to play those specific AVI files is most likely part of Perian or VLC but may not exist for Mac OS X.
    (97189)

  • TS1389 the above steps are still not solving the problem

    Following the steps recommended in http://support.apple.com/kb/TS1389 does not solves the problem.
    Did someone had the same problem and was able to solve this ?

    sudo rm -rf  /Volumes/Elements/.Trashes/$UID/*
    this excatly how i kept the commands guess i didn't know those were two seperate commands,,all my  office works were inside the folder name Documents in Mac Os disk... now its not there the games are still there and all other applications ,, just the desktop items and document folder is dissappared and it no longer visible,,, not even in my backup....
    after i dragged an item from trash can the display was like
    MacBook-Air:~ mac$ sudo rm -rf  /Volumes/Elements/.Trashes/$UID/*/Volumes/Elements/.Trashes/502/broucher\ copy.psd
    After this the document were deleted ,,, is there anyway i could recover that file it means a lot,, if you could help,,,all.. this happened because the trash can is empty but as i join the drive there are the files in trash that i deleted from external drive as a result no matter how much i delete the external drive shows no increase in space available..pelase suggest.. i even tried trash it didn work....

  • X11 Yellow-Cursor Problem: Still Not Solved

    Sorry for bringing this up again, but previous discussions (search for "X11 yellow cursor") are not active anymore, and the problem is unsolved. Let me briefly restate it for those who just joined in:
    When displaying X11 windows from Linux machines on Intel Macs using Apple's X-server, the cursor turns into a hardly visible yellow something. Apparently, the cause is related to some wrong assumption about the Endianness.
    There used to be a patch available (http://www.macosxhints.com/article.php?story=20060316124704289), but it was superseded by Apple's latest X11 update. The alternative solution suggested in that article (fiddling with the icon set on the Linux side) seems not work reliably - it doesn't for me.
    So the present situation is very unsatisfactory. I just bought iMacs for my research group and myself. Having tested all the software we need for our daily work (which includes X11) on my Powerbook G4, I thought I would be on the safe side. Now, we've run into this Intel-specific bug, which annoyingly enough seems to be understood and solved, but Apple decided not to correct it in its latest X11 release.
    I would highly appreciate any suggestions how to work around the problem for the time being. And I hope that somebody at Apple is reading this: The usefulness of Macs in a Linux/Unix-dominated scientific-computing environment critically depends on the availability of a reliable, stable X11 implementation.
    Hans
    iMac 24", PowerBook G4   Mac OS X (10.4.9)  

    Hi Hans,
    but it was superseded by Apple's latest X11 update.
    What do you mean by "superseded"? The patch
    http://homepage.mac.com/lycestra/yellowcursor.patch
    works well with the latest Apple's X11 source code.
    Just download X11-0.46.4.tar.gz from
    http://www.opensource.apple.com/darwinsource/10.4.9.x86/
    and put it in the same directory as yellowcursor.patch
    Then you can apply the patch as follows:
    $ tar zxvf X11-0.46.4.tar.gz
    $ cd X11-0.46.4
    $ patch -p1 < ../yellowcursor.patch
    Now you can build everything by
    $ cd xc
    $ make World >& logfile
    I guess it will take 20 to 30 minutes.
    (build may be faster if you add some definitions into config/cf/host.def)
    After the build, don't run "make install". Instead, just install the new Xquartz. Be sure to backup the origianl:
    $ sudo mv /usr/X11R6/bin/Xquartz /usr/X11R6/bin/Xquartz.ORG
    $ sudo cp -n programs/Xserver/Xquartz /usr/X11R6/bin/
    You may compare the output of xdpyinfo and glxinfo before and after installing it. I have noticed any performance difference between the original and the new Xquartz.
    PowerMacG4, PowerBookG4, iMac(C2D)   Mac OS X (10.4.9)  

  • TS2446 still not able to fix my problem

    my iphone shows that my apple ID is disable, I did follow all steps tp fix it and still not working

    Contact itunes support

  • IPad Mini retina screen orientation problem still not solved?!

    I have also been having the screen orientation problem on my iPad Mini retina. I cannot find out what the problem is or how to solve it. The switch does not help it and neither does changing the settings.  Nor does rebooting. Also, the volume on the retina is definitely lower than the ordinal iPad Mini. If I had known this I would've kept the original. I am on IOS 7.1.2.

    If you have Reset it, Restored it from Backup and Restored it as new and none of these helped then you will need to get it serviced.

  • Still not solved problem

    Hello Friends,
    I am using 6 tables in my report.i want to display recores by AT NEW and Related stuff.
    Can i use following code for query and internal tables ?
    or Sujjest me Better code.
    to use loop within loop is not good idea.
    I want to disply Records
    total Document type wise ->year wise -> Month wise -> Sales Order Number wise->Item Numberwise -> Production order numberwise
    This is interactive report of 8-9 screens !!
    Main problem is to make AT new with different loop !!
    Sujjest me with code !!
    Points will be rewarded soon !!
    Regards,
    Nimesh Master
    TABLE DECLARATION ************************
    TABLES : VBAK,AFPO,AUFM,MAKT,KNA1,VBAP.
    INTERNAL TABLE DECLARATION *******************
    DATA : BEGIN OF T1 OCCURS 0,
    AUART TYPE VBAK-AUART,
    NETWR TYPE VBAK-NETWR,
    KUNNR TYPE VBAK-KUNNR,
    VBELN TYPE VBAK-VBELN,
    AUDAT TYPE VBAK-AUDAT,
    END OF T1.
    DATA : BEGIN OF T2 OCCURS 0,
    NETWR TYPE VBAP-NETWR,
    POSNR TYPE VBAP-POSNR,
    END OF T2.
    DATA : BEGIN OF T3 OCCURS 0,
    AUFNR TYPE AFPO-AUFNR,
    KDPOS TYPE AFPO-KDPOS,
    KDAUF TYPE AFPO-KDAUF,
    PSMNG TYPE AFPO-PSMNG,
    WEMNG TYPE AFPO-WEMNG,
    END OF T3.
    DATA : BEGIN OF T4 OCCURS 0,
    DMBTR TYPE AUFM-DMBTR,
    MATNR TYPE AUFM-MATNR,
    ELIKZ TYPE AUFM-ELIKZ,
    END OF T4.
    DATA : BEGIN OF T5 OCCURS 0,
    NAME1 TYPE KNA1-NAME1,
    END OF T5.
    DATA : BEGIN OF T6 OCCURS 0,
    MAKTX TYPE MAKT-MAKTX,
    END OF T6.
    FREE T1.
    SELECT VBELN NETWR AUART AUDAT KUNNR FROM VBAK INTO CORRESPONDING FIELDS
    OF TABLE T1 WHERE AUART IN AUART AND VBELN IN VBELN.
    FREE T2.
    SELECT NETWR POSNR FROM VBAP INTO CORRESPONDING FIELDS OF TABLE T2
    FOR ALL ENTRIES IN T1 WHERE VBELN = T1-VBELN .
    FREE T3.
    SELECT AUFNR PSMNG WEMNG KDPOS FROM AFPO INTO CORRESPONDING FIELDS OF
    TABLE T3 FOR ALL ENTRIES IN T1 WHERE KDAUF = T1-VBELN .
    FREE T4.
    SELECT DMBTR MATNR ELIKZ FROM AUFM INTO CORRESPONDING FIELDS OF
    TABLE T4 FOR ALL ENTRIES IN T3 WHERE AUFNR = T3-AUFNR.
    FREE T6.
    SELECT MAKTX FROM MAKT INTO CORRESPONDING FIELDS OF TABLE T6 WHERE
    MATNR = T4-MATNR.
    FREE T5.
    SELECT NAME1 FROM KNA1 INTO CORRESPONDING FIELDS OF TABLE T5 WHERE
    KUNNR = T1-KUNNR.
      LOOP AT T1.
        AT NEW VBELN.
         WRITE : / T1-VBELN .
        ENDAT.
       AT NEW AUFNR.
          WRITE : / T1-AUFNR.
       ENDAT.
        AT END OF AUFNR.
          SUM.
          IF T1-PSMNG = T1-WEMNG.
            T1-CLOSE_ORD1 = T1-CLOSE_ORD1 + T1-DMBTR.
          ELSE.
            T1-OPEN_ORD1 = T1-OPEN_ORD1 + T1-DMBTR.
          ENDIF.
          TOT_DMBTR_C = TOT_DMBTR_C + T1-CLOSE_ORD1.
          TOT_DMBTR_O = TOT_DMBTR_O + T1-OPEN_ORD1 .
        ENDAT.
        AT END OF VBELN.
          SUM.
          P =  TOT_DMBTR_C.
          Q =  TOT_DMBTR_O.
          TMP_OC_SALES  = NET_PRICE - P.
            TMP_PER_SALES = ( TMP_OC_SALES * 100 ) / NET_PRICE .
            TMP_TOT_MAT =  P + Q.
            TMP_PER_MAT = ( TMP_TOT_MAT  * 100 ) / NET_PRICE.
            TOT_NET_SALES_A = TOT_NET_SALES_A + NET_PRICE.
            TOT_P_A = TOT_P_A + P.
            TOT_Q_A = TOT_Q_A + Q.
          ENDIF.
          FORMAT COLOR 2 ON.
          WRITE : 20 NET_PRICE,
                  50 P,
                  65 Q,
                  83 TMP_OC_SALES,
                  100 TMP_PER_SALES,'%',
                  120 TMP_TOT_MAT ,
                  139 TMP_PER_MAT,'%'.
          FORMAT COLOR 2 OFF.
        ENDAT.
      ENDLOOP.
    1. Tell me is it appropriate to take same number of INTERNAL TABLE as DDIC  
        TABLE ??
    2. Wat should be the queries for them ?
    3. How i use AT NEW with Different Loop for Internal tables ??

    i am gving u the silmilar kind of code where i used 4-5 tables.
    1> used for all entries tat will increase the performance
    2> use read instead of at
    3> use work area
    REPORT  ZBH_FI_ALV1 No Standard Page Heading.
    TABLES:T001,SKA1,SKB1,BKPF,BSEG.
    TYPE-POOLS:slis.
                   TYPES DECLARTIONS
    TYPES:begin of str_bkpf,
          blart type blart,
          bukrs type bukrs,
          belnr type bseg-belnr,
          gjahr type gjahr,
          budat type budat,
          end of str_bkpf.
    TYPES: begin of str_bseg,
           belnr type belnr_d,
           gjahr type gjahr,
           buzei type buzei,
           bschl type bschl,
           hkont type hkont,
           bukrs type bukrs,
           blart type blart,
           budat type bkpf-budat,
           saknr type saknr,
           fstag type fstag,
           ktopl type ktopl,
           bilkt type bilkt,
           end of str_bseg.
    TYPES:begin of str_t001,
          bukrs type bukrs,
          ktopl type ktopl,
          end of str_t001.
    TYPES:begin of str_ska1,
          bilkt type bilkt,
          ktopl type ktopl,
          saknr type saknr,
          end of str_ska1.
    TYPES:begin of str_skb1,
          fstag type fstag,
          bukrs type bukrs,
          saknr type saknr,
          end of str_skb1.
                   DATA  DECLARATIONS
    DATA:it_bkpf type standard table of str_bkpf  ,
         it_bseg type standard table of  str_bseg ,
         it_t001 type standard  table of str_t001 ,
         it_ska1 type standard  table of str_ska1 ,
         it_skb1 type standard table of str_skb1 ,
        fieldcat type slis_t_fieldcat_alv WITH HEADER LINE,
        events   type slis_t_event WITH HEADER LINE,
        layout  type slis_layout_alv,
        layout type  slis_layout_alv1 ,
        ALV type SY-REPID.
    data:w_index type sy-tabix.
    data: wa_bkpf like line of it_bkpf,
          wa_bseg like line of it_bseg,
          wa_t001 like line of it_t001,
          wa_ska1 like line of it_ska1,
          wa_skb1 like line of it_skb1.
                     INPUT VARIABLES
    SELECT-OPTIONS:s_BUKRS FOR BKPF-BUKRS obligatory,
                   s_BLART FOR BKPF-BLART obligatory,
                   s_BUDAT FOR BKPF-BUDAT,
                   s_BSCHL FOR BSEG-BSCHL,
                   s_HKONT FOR BSEG-HKONT.
                   SELECT STATEMENTS
    START-OF-SELECTION.
      select   blart      "Document type
               bukrs      "Company Code
               belnr      "Accounting Document Number
               gjahr      "Fiscal Year
               budat      "Posting Date in the Document
               from bkpf
               into
               table it_bkpf
               where bukrs in s_bukrs
               and   blart in s_blart
               and budat in s_BUDAT.
    check sy-subrc = 0.
      if not it_bkpf[] is initial.
       select belnr "Accounting Document Number
              gjahr "Fiscal Year
              buzei "Number of Line Item Within Accounting Document
              bschl  "Posting Key
              hkont  "General Ledger Account
              bukrs  "Company Code
              from bseg
              into table it_bseg
              for all entries in it_bkpf
              where  belnr = it_bkpf-belnr
              and    gjahr = it_bkpf-gjahr
              and    bukrs = it_bkpf-bukrs.
              endif.
      if not s_BSCHL[] is initial.
        delete it_bseg where not bschl in s_bschl.
      endif.
      if not s_HKONT[] is initial.
        delete it_bseg where not hkont in s_hkont.
      endif.
      if it_bseg[] is not initial.
        sort it_bseg by bukrs gjahr belnr.
        refresh it_t001.
        SELECT bukrs              "Company Code
               ktopl              "Chart of Accounts
               from T001
               into table it_t001
               where bukrs in s_bukrs.
        if not it_t001[] is initial.
          sort it_t001 by bukrs.
          refresh it_ska1.
          SELECT bilkt           "Group Account Number
                 ktopl           "Chart of Accounts
                 saknr           "G/L account number
                 from SKA1
                 into table it_ska1
                 for all entries in it_t001
                 where ktopl = it_t001-ktopl.
          if not it_ska1[] is initial.
            sort it_ska1.
            refresh it_skb1.
            SELECT fstag  "Field status group
                   bukrs  "Company code
                   saknr  "G/L account number
                   from skb1
                   into table it_skb1
                   for all entries in it_ska1
                   where bukrs in s_bukrs and
                           SAKNR = it_ska1-saknr.
          endif.
          endif.
          endif.
      loop at it_bseg into wa_bseg.
        w_index = sy-tabix.
        read table it_bkpf into wa_bkpf with key BUKRS = wa_bseg-bukrs.
        if sy-subrc = 0.
        wa_bseg-blart = wa_bkpf-blart.
        Read Table it_t001 into wa_t001 with key bukrs = wa_bseg-bukrs.
        if sy-subrc = 0.
        wa_bseg-ktopl = wa_t001-ktopl.
        if sy-subrc = 0.
        Read table it_ska1 into wa_ska1 with key ktopl = wa_bseg-ktopl.
        wa_bseg-saknr = wa_ska1-saknr.
        wa_bseg-bilkt = wa_ska1-bilkt.
        if sy-subrc = 0.
        Read Table it_skb1 into wa_skb1 with key bukrs = wa_bseg-bukrs saknr = wa_bseg-hkont.
        wa_bseg-fstag = wa_skb1-fstag.
        modify it_bseg  from wa_bseg index w_index transporting ktopl bilkt saknr fstag blart.
        endif.
        endif.
        endif.
    endif.
      endloop.
    regards
    bhanu
    all the  best

  • Correcting 'Read only' file problem ...

    I while ago I had an HD problem. I installed a new HD, upgraded to Leopard and then brought all my old files in from an external backup.
    My problem is that they're all now 'Read only'. Is there a way I can solve this problem at a stroke, without having to convert individual files to 'read & write'. Doing that is starting to drive me mad ...
    Thanks!

    Hey there,
    One solution is to repair disk permissions, which can be done through Disk Utility. The article below provides step-by-step instructions for using this feature to repair permissions. It is a better idea to use Disk Utility from your Mac Installation disc for this procedure. More on using disk utility can be found in the Apple document below. Hope this helps.
    http://www.askdavetaylor.com/whyis_my_mac_hard_drive_suddenlyreadonly.html
    http://support.apple.com/kb/HT1452
    B-rock

  • IMac will not boot, hard drive file problem? Can't install OS in 2nd part.

    The iMac will not boot. The Apple displays on the screen, the cursor spins for awhile, and then it loops into a reboot effort.
    Last night, I was doing a lot of custom file sharing settings using the include enclosed folders option at the bottom of the Get Info window.
    Question 1: Could that file sharing process have messed things up?
    In an effort to get things going........ A few weeks back, I used Disk Utility to create a 2nd partition, with the intent of installing Ubuntu Linux there. I never attempted the install, as far as I can remember, while playing with the Ubuntu Live CD. So, I thought I would install 10.5.6 from the CD in the 2nd partition. But I get an error message that says "The installer could not create the folder "/Volumes/Ubuntu 9.10/BaseSystem.pkg.161nDNDdQ.""
    Question 2: I also shared that partition, could that have caused the OS install failure?
    Question 3: If I understand the book correctly, I can try to install the OS from the CD on the 1st partition, and not lose my data, correct? Unfortunately, I don't have any backup for the data, as I don't own any drives large enough yet to accommodate the data on the drive.
    Question 4: Anyone have any other thoughts as to what ent wrong?

    Hi, Grant.
    Sometimes, it just pays to think on a problem. I awoke thinking, if it will boot the OS X install CD, it ought to boot my Ubuntu Live CD. And then, maybe I can change permissions on the first partition. As soon as I thought that, it occurred to me, if the problems are with the permissions, what if I used the OS X disk, and erased (formatted) the Ubuntu partition. That should set all the permissions on that partition back to default. Would OS X install then to the Ubuntu partition?
    You better believe it did!! I'm typing this from the Mac after updating my 10.5.6 to 10.5.8 in the 2nd partition, and I'm booting from the 2nd partition.
    I then did as you suggested, and from the Mac, I repaired the permissions to the first partition. But, the result was the same, there are a few permissions that do not match, and Disk Utility cannot, does not, or will not correct them.
    I'm currently downloading the 10.5.8 combo update .dmg file. My thought is to burn that to a disk, and then install it over the version in partition 1. And trust that the current installation on partition 1 does not have any cross linked files that will destroy some data.
    I do have some old ATA IDE drives I can hook externally to the Mac, and copy some of the information I have from the Mac to those drives before doing the 10.5.8 install.
    Can you think of a better solution?

  • Still not fixed in CS6: Undo problem after Text Type + Move

    I have noticed this very annoying Photoshop problem still has not been addressed by Adobe.
    Breakdown:
    Type text
    Move text
    If you undo the move, it will not only undo the move - but the text you typed as well
    So technically it does 2 undos instead of just 1. Does this not irritate anybody else? It's so annoying.

    Type text
    Move text
    If you undo the move, it will not only undo the move - but the text you typed as well
    Between "Type Text" and "Move Text" are you clicking the Check Mark to commit text (or hitting Enter on numeric pad), then selecting the Move Tool to move the text?

  • Installed Adobe Camera Raw 8.7.1 but still can't read raw files from new a7ii

    Have latest update of LR. Just bought new camera A7ii but LR would not recognize raw files. Downloaded and installed Camera Raw 8.7.1 and restarted. Still can't recognize files. What did I do wrong?

    Have latest update of LR
    Please tell us the version number
    LR would not recognize raw files
    Exactly what happened? Is there an error message? If so, please quote the complete error message exactly as it appears, word-for-word, verbatim, changing nothing.
    Downloaded and installed Camera Raw 8.7.1 and restarted.
    As Bob Somrak said, this won't help, and he provides details on what to do.

  • Read XML file problem

    Hi all,
    I am trying to read an xml file and display the output. i get a blank display. Can anybody please help me out.
    Thanks in advance
    I cant attach the xml file. Since its not a valid extension. Please find the xml code below.
    <Company>
    <Name>Samsung</Name>
    <Location>
    <City>Busan</City>
    <Country>South Korea</Country>
    </Location>
    </Company>
    Regards,
    KM
    Solved!
    Go to Solution.
    Attachments:
    Read Data from XML File.vi ‏9 KB

    If you can change saved .xml file, you can modify it to be compatible with Labview XML shema and use Unflatten from XML like in your VI. If you cannot, you should use XML Parser library. In attachement you can find 2 exmaples for these situations.
    Attachments:
    Modified XML file.vi ‏12 KB
    XML Parsing 1.vi ‏20 KB

  • 7.1 does NOT solve 5.1 downmix problem with Panasonic SDC-HD1 and others...

    Howdy...
    Just an FYI: Cameras that record AVCHD in 5.1 surround (such as the Panasonic SDC-HD1 that Steve Jobs was touting at his keynote) still are not correctly downmixed in iMovie 7.1 or FCP.
    The sound still defaults to Mono with 1 channel being being loud and the other very quiet, as opposed to downmixing correctly to stereo from 5.1 (or even staying in 5.1 for FCP... D'oh!)
    Lots of nice fixes, but not for this bug...
    Best,
    Ben

    I also have this problem here
    I've tried to playback all those AVCHD in windows, they work fine, but mac just ***** with AVCHD
    I tried to convert those AVCHD to DVD videos, which playback fine in windows, but the audio in mac just *****. (Even just playing back a DVD made from AVCHD!)

Maybe you are looking for

  • Unable to open OEM on RHEL5

    Hi, I've successfully installed and create database on RHEL Version 5. I'm using Oracle 11g db server. all services, listener and database is up the only problem is when I access OEM using Firefox https://192.168.1.1:1158/em it gives me security cert

  • I have two versions of Lightroom installed on my computer, can I uninstall the older version?

    While looking at the "Programs and Features" folder on my Windows 7 computer I discovered that I have two versions of Adobe Lightroom installed on my system. One is Lightroom 5.2, installed on 9/19/2013, and the other is Adobe Photoshop Lightroom 5.5

  • Linking two computers together

    Can I link two macs together so I have access to both but the other computer doesn't have access to mine?

  • ID3 Tag Coversion

    I am trying to convert some of my songs from my itunes library into english. Some of my songs are from anime soundtracks in which some of the tracks are in japanese. I went into advanced, convert Id3 tags, but it wont let me convert the tracks. Is it

  • Will i get banned from the game Clash of Clans for having 2 accounts?  Will they ever find out?

    OK so i just made a second clash of clans account and there's been talk on the internet about whether or not clash of clans will delete your account for having 2 accounts. Some people say yes, some people say no, some people say they will never find