How to program this in java? Please help

How to program this in java?
please explain steps, it has to come out like this:
example
input: 3b1w3b
output:
BBBWBBB

import java.io.*;
public class Test {
static java.io.PrintStream o = java.lang.System.out;
public static void main(String[] args)throws Exception {      
     BufferedReader BR = new BufferedReader(new InputStreamReader(System.in));
     System.out.print("Enter plot for printing: ");
     String s = BR.readLine();
     char[] cs = s.toLowerCase().toCharArray();
     for(int i=0, j=0; i < cs.length-0x1; i+=0x2, j=0)
          while(j++ < (int)(cs[i]-0x30))
               o.print((char)(cs[i+0x1]-0x20));
I tried changeing it to this so I can enter my own string, but I want to change it some more so that it can enter multiple input separated by space, so that it can form a sort of picture line by line. I tried using tolkenizer but I get errors. I dont know how to use tolkenizer properly can anyone please TEACH. you dont have to tell how or give me the code if you dont want to. yes I know Im a noob and I dont know java as good as everyone here, If everyone thinks I don't deserve help then DON'T help, I'm just trying to learn programming

Similar Messages

  • Can't delete images with adobe bridge for days , don't know how to fix this , can you please help ?

    Can't delete images with adobe bridge for days , don't know how to fix this ? Can you help please ?

    Thank you so much for sharing

  • My iPad 1st is freezing up when i play games on it, anyone know how to fix this problem? Please Help

    My iPad 1st is freezing up when i play games on it, anyone know how to fix this problem? Please Help

    This is an ipad 2 it hasn't been updated, the thing is I restored it to the orginal setting because it was acting up, instead of 59.9 GB it gave me the memory capacity of 58.9 that has been already been use. Do you think using a different computer that hasn't been use on my ipad will raise the memory capacity? I've done it before just that the computer that I've been using has my ipad's data.

  • How to code this...please help

    Hi Friends:
       Please help me in coding the following scenario:
       I've the following checkboxes on selection screen:
    1. inventory quantity current period-unrestricted (mard-labst)
    2. inventory quantity current period-restricted use stock (mard-einme)
    3. inventory quantity current period-in quality inspection(mard-insme)
    4. inventory quantity current period - blocked (mard-speme)
    5. inventory quantity current period - returns (mard-retme)
    6. inventory quantity current period- stock in transfer (mard-umlme)
    now the scenario is like this. The user may check 1/2/3/4/5/6 checkboxes while executing this program. Now what all checkboxes are checked, only those values to be fetched from MARD. E.g. 1 & 2 are checked. Then I'll fetch labst & einme from MARD. Then I'll add it up. Please help me in coidng this. How to decide it at runtime.
    Thanks:

    Hi use this logic.
    if c1 = 'X.
    select single labst from mard into corrseponding table it_mard where..
    endif
    if c2 = 'X.
    select single einme from mard into corrseponding table it_mard where..
    endif.
    if c3 = 'X.
    select single insmefrom mard into corrseponding table it_mard where..
    endif.
    if c4 = 'X.
    select single spemefrom mard into corrseponding table it_mard where..endif.
    endif
    if c5 = 'X.
    select single retme from mard into corrseponding table it_mard where..
    endif.
    if c6 = 'X.
    select single umlme from mard into corrseponding table it_mard where..endif.
    endif
    Regards,
    Prasad.

  • How to run this servlet? Please help!

    http://wrox.com/Books/Book_down.asp?section=11_4&isbn=1861002777&subject=&subject_id=
    Chapter 13 Source Code
    I can't seem to compile this WebMail.java file. I have TomCat and servlets.jar is in my classpath too running but to no avail! Do u manage to compile and run it? Can u guys tell me what did I do wrong? Here's my list of errors(not all).
    javac WebMail.java
    WebMail.java:4: cannot resolve symbol
    symbol : class HttpServlet
    location: class WebMail
    public class WebMail extends HttpServlet {
    ^
    WebMail.java:6: cannot resolve symbol
    symbol : class HttpServletRequest
    location: class WebMail
    public void doGet(HttpServletRequest request
    ^
    WebMail.java:6: cannot resolve symbol
    symbol : class HttpServletResponse
    location: class WebMail
    public void doGet(HttpServletRequest request
    WebMail.java:7: cannot resolve symbol
    symbol : class ServletException
    location: class WebMail
    throws ServletException, IOException {

    Direct link: ftp://ftp.wrox.com/Professional/2777/chap13.zip and a code snippet from that link:
    import javax.mail.*;
    import javax.mail.internet.*;
    public class WebMail extends HttpServlet{..}The sample code is not OK, as it does not define where to find HttpServlet or things like HttpServletRequest. Then even if your classpath is allright, the compiler still does not know what is 'HttpServlet'.
    If you look at http://java.sun.com/j2ee/tutorial/api/javax/servlet/http/HttpServlet.html you'll see that its full name is javax.servlet.http.HttpServlet. So either use the full names, like in
    public class WebMail
      extends javax.servlet.http.HttpServletand
    public void doGet(javax.servlet.http.HttpServletRequest ...)or (preferred) simply add the following line at the top of your code:
    import javax.servlet.http.*;Arjan.

  • Noob question, how to avoid this runtime error,please help..

    Im new to java. Im using a JOptionPane in getting the user an input/a number, which is in String,. and to use it, im converting it by Integer.parseInt. When I run it everything seems ok, but whenever i inputted other data types other than integer(e.g char), i get a runtime error message "exception in main thread java.lang.NumberFormatException blah blah.....,. Is theres a way or a method or something that i can filter the users input when they type a character or when they inputted nothing that will not resulted to a runtime error, instead, an error message box will said that it is an invalid input. thanks in advance

    Ah, well, after an evening of rest and reflection, I have to conclude that we are all partially correct. I never meant to imply that NumberFormatException should not be caught. I have had to repair too many classes in which just-in-case or programming-by-exception was a rule, rather than a valuable technique for handling exceptional or error situations.
    As far as this example, I was not attempting to write a parser, or even start one. We are talking about a very simple situation ... determine if a String represents an integer. My example was overly simple, too. As pointed out, too simple. *\d+* would have eliminated empty strings, and with a few relatively minor changes, could handle all legal integers easily, including '-' and ',' characters, while excluding floating point and other invalid inputs. I did mention that regexes were an advanced technique. A Scanner could be used to test for the existence of an integer in a string. None of these rise to the level of parsing, IMO, but, as I have frequently said in these fora, the arguments of the mages are infinite. Of course, that implies that I consider myself a mage, which is not actually the truth.
    In any case, as pointed out, this is an example where catching a runtime exception is probably a good idea, as long as we don't give the OP the idea that this is the only technique, or that code can be written to ignore the causes of exceptional situations, because we can always handle them in the catch block. I have seen way too much of this to be comfortable with even the suggestion of this.
    I come here to learn. Sometimes, I learn interesting, complex things. Sometimes, I learn interesting, simple things.
    Sincerely, thanks for helping me to learn.
    ? {?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to handle this error!(please help)

    hey !
    i am getting this error massege(cannot resolve the symbol(setBorder).i am really confused .
    please somebody help me!
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    import java.text.SimpleDateFormat;
    //import javax.swing.border.CompoundBorder;
    class MyPanel extends Grid
    public MyPanel()
    public MyPanel(String title)
    setBorder(BorderFactory.createCompoundBorder(
    BorderFactory.createTitledBorder(title),
    BorderFactory.createEmptyBorder(5,5,5,5)));
    public class Grid extends JFrame /*implements ActionListener*/
    static final int FPS_INIT = 15; //initial frames per second
    static final int FPS_INIT2=2000;
    //THIS LINE
    //static final double FPS_INIT3=Aug;
    int intframeNumber = 0;
    int delay;
    boolean frozen = false;
    private JPanel date_panel,year_panel, month_panel,day_panel;
    private String time=new String("");
    private Date date=new Date();
    public Grid() {
    time=time + new Date().toString();
    SimpleDateFormat formatter = new SimpleDateFormat("E, MMMM d, yyyy") ;
    time = formatter.format(date) ;
    date_panel=new JPanel();
    year_panel=new JPanel();
    month_panel=new JPanel();
    day_panel=new JPanel();
    JSlider framesPerSecond = new JSlider(JSlider.HORIZONTAL,
    1, 31, FPS_INIT);
    JSlider framesPerSecond2 = new JSlider(JSlider.HORIZONTAL,
    1990, 2010, FPS_INIT2);
    //THIS LINE
    // JSlider framesPerSecond3 = new JSlider(JSlider.HORIZONTAL,
    // Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec, FPS_INIT3);
    date_panel.setLayout(new FlowLayout());
    date_panel.add(new JLabel(time));
    day_panel.setLayout(new FlowLayout());
    day_panel.add(framesPerSecond);
    //year_panel.setLayout(new FlowLayout());
    MyPanel year_panel = new MyPanel("Year");
    year_panel.setLayout(new BorderLayout());
    month_panel.setLayout(new FlowLayout());
    // month_panel.add(framesPerSecond3);
    // JSlider framesPerSecond = new JSlider(JSlider.HORIZONTAL,
    // 0, 31, FPS_INIT);
    // framesPerSecond.addChangeListener(new SliderListener());
    //Turn on labels at major tick marks.
    framesPerSecond.setMajorTickSpacing(5);
    framesPerSecond.setMinorTickSpacing(1);
    framesPerSecond.setPaintTicks(true);
    framesPerSecond.setPaintLabels(true);
    framesPerSecond.setBorder(
    BorderFactory.createEmptyBorder(0,0,10,0));
    framesPerSecond2.setMajorTickSpacing(5);
    framesPerSecond2.setMinorTickSpacing(1);
    framesPerSecond2.setPaintTicks(true);
    framesPerSecond2.setPaintLabels(true);
    framesPerSecond2.setBorder(
    BorderFactory.createEmptyBorder(0,0,10,0));
    year_panel.add(framesPerSecond2);
    /* framesPerSecond3.setMajorTickSpacing(2);
    framesPerSecond3.setMinorTickSpacing(1);
    framesPerSecond3.setPaintTicks(true);
    framesPerSecond3.setPaintLabels(true);
    framesPerSecond3.setBorder(
    BorderFactory.createEmptyBorder(0,0,10,0));*/
    //JPanel contentPane = new JPanel();
    //Create the label for the animation.
    // picture = new JLabel(new ImageIcon("images/doggy/T"
    // + frameNumber
    // + ".gif"),
    // JLabel.CENTER);
    Container contentPane = getContentPane();
    contentPane.setLayout(new GridLayout(4,4));
    contentPane.add(date_panel);
    contentPane.add(year_panel);
    contentPane.add(day_panel);
    // contentPane.add(month_panel);
    public static void main(String args[]) {
    Grid gw = new Grid();
    gw.setTitle("Date Slider");
    gw.setSize(400,200);
    gw.setVisible(true);

    you have to set the border for ur component, u can not call set border on the air..........
    i have changed your code like this
         year_panel.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createTitledBorder(title),BorderFactory.createEmptyBorder(5,5,5,5)));
    and
                                  public JPanel date_panel,year_panel, month_panel,day_panel;
    instead of private i have used public.It is compiling.

  • How to write this application - URGENT PLEASE HELP

    I would like to write a program for a supermarket loyalty card system. The program should have 2 customers and 2 gifts on offer. The customer details and the gift details can be hard coded.
    When the program starts the user should be shown a menu which will have options to
    view all customer details
    add points for a customer
    buy a gift
    When the user chooses to buy a gift ro to add points, any changes made to the customers' points must be done using methods. Adding or buying gifts should be done using customer id's and gift id's.
    The user must be able to see the altered points.
    I WILL APPRECIATE IF I COULD GET HELP EVEN FOR PSEUDOCODE.

    Not as much as this guy tho http://forum.java.sun.com/thread.jsp?forum=31&thread=486327&tstart=150&trange=15

  • How to solve this trouble ? Please help me !

    Hi everyone ! I'm fresher in c and c++. I'm having a trouble when I add new data into vector / list . I have a method like :
    void List(vector<Student> &result)
    ifstream list(saveurl, ios::in | ios::binary);
    if (list.is_open())
    Student st;
    while (!list.eof())
    if (list.read((char*)&st, sizeof(Student)))
    result.push_back(st);
    list.close();
    First-chance exception at 0x5E84DF58 (msvcp120d.dll) in Student.exe: 0xC0000005: Access violation reading location 0x010FAA4C.
    If there is a handler for this exception, the program may be safely continued.
    what can I do now ? any suggestions for me ?

    On 17/03/2015 20:31, "Tran Hoang Duc" wrote:
    as shown below is how is the Student class defined .
    struct DateTime
    int day,month,year;
    class Student
    private :
    __int64 RollNo;
    string StudentName, Course, FatherName,Address,Country;
    DateTime DateofBirth;
    is it right ?
    Perfect, as I suspected :)
    Your Student class definition is just fine.
    The problem is how you serialize that to/from files.
    Since you have non-POD types like std::string as Student data members, you can't just dump your Student internal bytes to disk and read them back to disk.
    This won't work, because for example std::string has pointers inside, and the values of those pointers (memory addresses) are meaningless when you write them to file and later load them from file, as just raw bytes, like in this code showed above in
    this thread:
    Student st;
    while(list.read((char*)&st, sizeof(Student)))
     You have to think how to write your Student class to files.
    You can use XML, JSON, or even simple comma separated values text files.
    Even if you use some custom binary format for your Student instances, you should pay attention to properly write the text stored in your strings to files, and read that back into std::string data members.
     Giovanni

  • I have an ipad 64GB, I'm trying to restore it to the orginal memory capacaity of 59.9 GB when I first go it. Does anyone know how to solve this problem? Please help!!!!

    I have an ipad 64 GB I'm trying to restore it to it's orginal memory capacaity of 59.9 just like when I got it, Can anyone help me find the solution and help me fix it?

    This is an ipad 2 it hasn't been updated, the thing is I restored it to the orginal setting because it was acting up, instead of 59.9 GB it gave me the memory capacity of 58.9 that has been already been use. Do you think using a different computer that hasn't been use on my ipad will raise the memory capacity? I've done it before just that the computer that I've been using has my ipad's data.

  • When i'm typing google in the search column .. its giving some other files path in c drive .. i cant that file in my desktop too , i have uninstalled that software too . how to fix this problem ? please help me out.

    Hello Help Desk,
    I am facing problem , When i am typing google.com in my url its showing like this in url's place
    file:///C:/Users/acer/AppData/Roaming/GmailHackerPro/GmailHackerPro/1.0.0.0/MyGoogle.html
    can u help me to fix this problem
    Even i can't find those files in my C drive

    I would try to uninstall that extension GMail Hacker Pro and reset the keyword.URL in your about:config

  • HT201209 i have problem with my billing information, every time when i want buy app from app store, he told me go to purchase history , i don't know how i fix this problem, so please help me

    Dear
       I Have a problem with purchases , where , when i wanna buy a game from app store (Using VISA), he told me : your billing information was decline,
    So Please i need your support to solve the problem quickly
    Thanks
    Ali Altalabany

    Try rebooting the iPad one more time. Try using recovery mode again and if that still doesn't work, make an appointment at an Apple Store and ask for their help.
    iOS: Unable to update or restore - Apple - Support

  • I have ipod 4 touch. 3yrs old. when i plug in it isnt charging. it gets switched off after the charge gets over. then it charges and again switches on. dont know how to solve this problem.. please help

    IPod 4 touch. 3yrs old. Not charging when plugged in. But charges when the battery gets drained. when battery gets over I keep it for charging. It switches on and doesn't charge.. Plz help!!;;

    Not Charge
    - See:     
    iPod touch: Hardware troubleshooting
    iPhone and iPod touch: Charging the battery
    - Try another cable. The cable for 5G iPod (lightning connector) seems to be more prone to failure than the older cable.
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar

  • How to optimize this query? Please help

    i have one table(argus) having 80,000 rows and another table (p0f) having 30,000 rows and i have to join both table on the basis of time field. the query is as follows
    select distinct(start_time),res.port, res.dst_port from (select * from argus where argus.start_time between '2007-06-13 19:00:00' and '2007-06-22 20:00:00') res left outer join p0f on res.start_time=p0f.p0f_timestamp ;
    the query is taking very large time . i have created index on the start_time and p0f_timestamp ,it increased the performance but not so much. My date comparisons would vary every time i have to execute a new query.
    Plz tell me is there another way to execute such a query to output same results?
    plz help me as my records are increasing day by day
    Thanks
    Shaveta

    From my small testcase it seems that both queries are absolute identical and don't actually take too much time:
    SQL> create table argus as (select created start_time, object_id port, object_id dst_port from all_objects union all
      2                         select created start_time, object_id port, object_id dst_port from all_objects)
      3  /
    Table created.
    SQL> create table p0f as select created p0f_timestamp, object_id p0f_port, object_id p0f_dst_port from all_objects
      2  /
    Table created.
    SQL> create index argus_idx on argus (start_time)
      2  /
    Index created.
    SQL> create index p0f_idx on p0f (p0f_timestamp)
      2  /
    Index created.
    SQL>
    SQL> begin
      2   dbms_stats.gather_table_stats(user,'argus',cascade=>true);
      3   dbms_stats.gather_table_stats(user,'p0f',cascade=>true);
      4  end;
      5  /
    PL/SQL procedure successfully completed.
    SQL>
    SQL> select count(*) from argus
      2  /
      COUNT(*)
         94880
    SQL> select count(*) from p0f
      2  /
      COUNT(*)
         47441
    SQL>
    SQL> set timing on
    SQL> set autotrace traceonly explain statistics
    SQL>
    SQL> select distinct (start_time), res.port, res.dst_port
      2             from (select *
      3                     from argus
      4                    where argus.start_time between to_date('2007-06-13 19:00:00','RRRR-MM-DD HH24:MI:SS')
      5                                               and to_date('2007-06-22 20:00:00','RRRR-MM-DD HH24:MI:SS')) res
      6                  left outer join
      7                  p0f on res.start_time = p0f.p0f_timestamp
      8                  ;
    246 rows selected.
    Elapsed: 00:00:02.51
    Execution Plan
    Plan hash value: 1442901002
    | Id  | Operation               | Name    | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT        |         | 21313 |   520K|       |   250   (6)| 00:00:04 |
    |   1 |  HASH UNIQUE            |         | 21313 |   520K|  1352K|   250   (6)| 00:00:04 |
    |*  2 |   FILTER                |         |       |       |       |            |          |
    |*  3 |    HASH JOIN RIGHT OUTER|         | 21313 |   520K|       |    91  (11)| 00:00:02 |
    |*  4 |     INDEX RANGE SCAN    | P0F_IDX |  3661 | 29288 |       |    11   (0)| 00:00:01 |
    |*  5 |     TABLE ACCESS FULL   | ARGUS   |  7325 |   121K|       |    79  (12)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - filter(TO_DATE('2007-06-13 19:00:00','RRRR-MM-DD
                  HH24:MI:SS')<=TO_DATE('2007-06-22 20:00:00','RRRR-MM-DD HH24:MI:SS'))
       3 - access("ARGUS"."START_TIME"="P0F"."P0F_TIMESTAMP"(+))
       4 - access("P0F"."P0F_TIMESTAMP"(+)>=TO_DATE('2007-06-13 19:00:00','RRRR-MM-DD
                  HH24:MI:SS') AND "P0F"."P0F_TIMESTAMP"(+)<=TO_DATE('2007-06-22
                  20:00:00','RRRR-MM-DD HH24:MI:SS'))
       5 - filter("ARGUS"."START_TIME">=TO_DATE('2007-06-13 19:00:00','RRRR-MM-DD
                  HH24:MI:SS') AND "ARGUS"."START_TIME"<=TO_DATE('2007-06-22 20:00:00','RRRR-MM-DD
                  HH24:MI:SS'))
    Statistics
              1  recursive calls
              0  db block gets
            304  consistent gets
              0  physical reads
              0  redo size
           7354  bytes sent via SQL*Net to client
            557  bytes received via SQL*Net from client
             18  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
            246  rows processed
    SQL>
    SQL> select distinct start_time, port, dst_port
      2             from argus left outer join p0f on start_time = p0f_timestamp
      3            where start_time between to_date ('2007-06-13 19:00:00','RRRR-MM-DD HH24:MI:SS')
      4                                       and to_date ('2007-06-22 20:00:00','RRRR-MM-DD HH24:MI:SS')
      5  /
    246 rows selected.
    Elapsed: 00:00:02.47
    Execution Plan
    Plan hash value: 1442901002
    | Id  | Operation               | Name    | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT        |         | 21313 |   520K|       |   250   (6)| 00:00:04 |
    |   1 |  HASH UNIQUE            |         | 21313 |   520K|  1352K|   250   (6)| 00:00:04 |
    |*  2 |   FILTER                |         |       |       |       |            |          |
    |*  3 |    HASH JOIN RIGHT OUTER|         | 21313 |   520K|       |    91  (11)| 00:00:02 |
    |*  4 |     INDEX RANGE SCAN    | P0F_IDX |  3661 | 29288 |       |    11   (0)| 00:00:01 |
    |*  5 |     TABLE ACCESS FULL   | ARGUS   |  7325 |   121K|       |    79  (12)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - filter(TO_DATE('2007-06-13 19:00:00','RRRR-MM-DD
                  HH24:MI:SS')<=TO_DATE('2007-06-22 20:00:00','RRRR-MM-DD HH24:MI:SS'))
       3 - access("START_TIME"="P0F_TIMESTAMP"(+))
       4 - access("P0F_TIMESTAMP"(+)>=TO_DATE('2007-06-13 19:00:00','RRRR-MM-DD
                  HH24:MI:SS') AND "P0F_TIMESTAMP"(+)<=TO_DATE('2007-06-22 20:00:00','RRRR-MM-DD
                  HH24:MI:SS'))
       5 - filter("ARGUS"."START_TIME">=TO_DATE('2007-06-13 19:00:00','RRRR-MM-DD
                  HH24:MI:SS') AND "ARGUS"."START_TIME"<=TO_DATE('2007-06-22 20:00:00','RRRR-MM-DD
                  HH24:MI:SS'))
    Statistics
              1  recursive calls
              0  db block gets
            304  consistent gets
              0  physical reads
              0  redo size
           7354  bytes sent via SQL*Net to client
            557  bytes received via SQL*Net from client
             18  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
            246  rows processedCan you show us a similar testcase with explain plan and statistics?

  • I just got an iPad mini and the volume icon will not come off the middle of the screen. I tried turning it off and on but that didn't work. Any one know how to solve this problem? Please help!

    My volume icon won't go away on my iPad mini

    Try resetting the ipad by holding the home and lock button simultaneously until the device restarts.

Maybe you are looking for

  • Error: Maintain EDI-outbound parameter for partner MSG09

    Hi Gurus, I have encountered an error message while I am trying to trigger an output in Purchase order, this should in turn create a Sales Order automatically in our process. I knew that for this we need to maintain the partner profile in WE20. But s

  • Downloaded PDF file

    Downloaded a pdf file and opened it. Then closed file and went to open again but I can't find it. Looked in "drive" not there. opened up download file but it tells me it opened and I can't open it again. This is for an HTC ONE mini I believe.

  • EP 5.0 Invalid Ticket

    Hi all! When i try to logon in the EP 5.0, the message Your session has expired. Please close your browser and log on again. appears. The verify.der certificate has expired. I´ve removed verify.* and ticketKeyStore files and restarted IIS, but the ce

  • Mail crashes just after start of it

    Hello, Mail crashes every time I start it. I configured my gmail account for imap and changed it later back to POP. Even if I change my gmail account to work with IMAP, it doesn't solve the problem. Mail crashes again and again, just after the start.

  • I can't upgrade Flash Player because it wasn't downloaded from the Mac App Store.

    Now what?? I can't watch any videos.