Output to appear in ascending order

Could someone please help me to get the contents of my output file in ascending order.
I am reading a file mnf.xml kept inside my jar, the contents of it are
<assets>
</assets>I am writing the contents of the file mnf.xml to an output file, and am also adding the pdf filenames found in the directory.
The contents of the output file after running the program are
<assets>
<pdf_files name="assets/123_001_ch_03.pdf"/>
<pdf_files name="assets/123_001_ch_02.pdf"/>
<pdf_files name="assets/123_001_ch_01.pdf"/>
</assets>
But I need my output to be in the following order
<assets>
<pdf_files name="assets/123_001_ch_01.pdf"/>
<pdf_files name="assets/123_001_ch_02.pdf"/>
<pdf_files name="assets/123_001_ch_03.pdf"/>
</assets>
My code is
void fileMNF(File RootDir, String jTextField1Text)
     String filename=jTextField1Text.substring(0,jTextField1Text.lastIndexOf("."))+"_mnf.xml";
     String Assetsdir=RootDir+"\\"+"assets";
     File files=new File(Assetsdir);     
     String[] lists=files.list();
     try
          int val;
          char ch;
          InputStream is=getClass().getResourceAsStream("/Inputs/mnf.xml");
          File dstfile=File.createTempFile("mnf", ".xml");
          dstfile.deleteOnExit();
          FileOutputStream fos = new FileOutputStream(dstfile);
          int b;
          while((b = is.read()) != -1)
               fos.write(b);
          fos.close();
          File inputfile=new File(dstfile.getAbsolutePath());
          File outputfile=new File(filename);
          BufferedReader in = new BufferedReader(new FileReader(inputfile));
          BufferedWriter out = new BufferedWriter(new FileWriter(outputfile));
          String line;
          while ((line=in.readLine()) != null)
               if(line.startsWith("<assets>"))
                    for(int i=0;i<lists.length;i++)
                         if(lists.endsWith(".pdf"))
                              line = PDFLineInsert(line,lists[i]);
               out.write(line);
               out.newLine();
               out.flush();
          in.close();
          out.close();
     catch(Exception e)
          System.out.println(e.getMessage());
private String PDFLineInsert(String line, String PDF)
     String res = "";
     res = line.replace("<assets>", "<assets>\n\r<pdf_files name=\"assets/"+PDF+"\"/>");
     return res;

Your PDFLineInsert method is inserting your lines at the beginning of the file.
You should change your logic to write the new lines as you get them. something like this:
          while ((line=in.readLine()) != null)
               if(line.startsWith("<assets>"))
                   out.write(line);
                   out.newLine();
                    for(int i=0;i<lists.length;i++)
                         if(lists.endsWith(".pdf"))
                              out.write("<pdf_files name=\"assets/"+lists[i]+"\"/>");
                              out.newLine();
               out.write(line);
               out.newLine();
               out.flush();
          in.close();
          out.close();
~Tim
EDIT: remove the extra '>' in the write statement inside the for loop. it is caused by a bug in the forum software
Message was edited by:
SomeoneElse

Similar Messages

  • Batches not appearing in ascending order with Pallet Number! Please Help!

    Hi Experts,
    I have a problem regarding Pallets. When I am doing Delivery in VL01n at the time of bacth determination, 1 pallet number is assigned to two batches  which are appearing in descending order and i want them in ascending order. Also I want to know that where it has all the assignment of pallets.
    Points will be awarded if the answer is helpful!
    Thanks in advance

    Hi Vishal ,
    Thanks for the response..
    Have checked it.. Update Doc. Flow check was there.. But still i am receiving the same issue..
    Some time its creating entry in /DBM/ORD_DOCFLOW. and sometimes its not.. it works weird..
    Please advise.
    Regards,
    Mathan R.

  • Ascending order values??

    Hi,
    I need some small help regarding writing an algorithm. I want to find out maximum array values for given random array.
    sample data:
    Input :
    A[5] = { 3,2,7,4,1}
    //here i'm giving random values in an array
    output :
    1,2,3,4,7
    // here i need output like ascending order
    if anybody knows ,please help me.
    Thank you,
    -balaji

    >
    I need some small help regarding writing an
    n algorithm. I want to find out maximum array values
    for given random array.
    If you just want the greatest value in an array, the simplest thing is to loop through it like this (assuming at least one element in the array):
    int greatest = a[0];
    for (int n = 1; n < a.length; n++) {
        if (a[n] > greatest)
            greatest = a[n];
    sample data:
    Input :
    A[5] = { 3,2,7,4,1}
    //here i'm giving random values in an array
    output :
    1,2,3,4,7
    // here i need output like ascending order
    But if you need to output the array in ascending order you will have to sort the array first. You can use the java.util.Arrays.sort() methods for that purpose:
    int[] a = {3,2,7,4,1};
    java.util.Arrays.sort(a);
    for (int n = 0; n < a.length; n++) {
        if (n > 0) System.out.print(",");
        System.out.print(a[n]);
    }S&oslash;ren

  • Apple TV sorts my photos only in ascending order, how can I change so the most recent EVENTS appear first?

    Apple TV sorts my photos only in ascending order, how can I change so the most recent EVENTS appear first?

    I'm looking for an answer to this, too, since I have thousands of Events, and so scrolling down to the bottom every time I want to show my newest photos makes it almost unusable.

  • Generating the output in Ascending order of Date (Month-YY)

    Hi I have a query as below...
    I want the result to be in Ascending order of date in the form of (Month-YY)
    but i couled get the desired order
    the result is next to the query...
    SELECT TO_CHAR (TRUNC (TO_DATE (poh_date_d), 'MON'), 'MONTH') || ' - ' || TO_CHAR (TO_DATE (poh_date_d), 'YY'), class_code_c, COUNT (coach_no_c)
    FROM mecd_coach_m
    WHERE poh_date_d BETWEEN TO_DATE ('01-JAN-07') AND TO_DATE (SYSDATE)
    AND poh_stn_c = 'MTN'
    GROUP BY TO_CHAR (TRUNC (TO_DATE (poh_date_d), 'MON'), 'MONTH') || ' - ' || TO_CHAR (TO_DATE (poh_date_d), 'YY'), class_code_c
    ORDER BY TO_CHAR (TRUNC (TO_DATE (poh_date_d), 'MON'), 'MONTH') || ' - '
    || TO_CHAR (TO_DATE (poh_date_d), 'YY')
    The Output
    TO_CHAR(TRUNC( CLASS_CODE COUNT(COACH_NO_C)
    APRIL - 07 ACCN 12
    APRIL - 07 ACCW 7
    APRIL - 07 ART 1
    APRIL - 08 ACCN 16
    APRIL - 08 ACCW 8
    APRIL - 08 ART 4
    APRIL - 08 GFSCWAC 1
    AUGUST - 07 ACCN 12
    AUGUST - 07 ACCW 3
    AUGUST - 07 CT 2
    AUGUST - 07 DCBACEN 1
    DECEMBER - 07 ACCN 14
    DECEMBER - 07 ACCW 7
    DECEMBER - 07 ART 3
    DECEMBER - 07 GFSCWAC 2
    FEBRUARY - 07 ACCN 9
    FEBRUARY - 07 ACCW 5
    FEBRUARY - 07 GS 27
    FEBRUARY - 07 GSCN 60
    FEBRUARY - 08 ACCN 13
    FEBRUARY - 08 ACCW 9
    FEBRUARY - 08 FACCW 1
    JANUARY - 07 ACCN 1
    JANUARY - 07 ACCW 4
    JANUARY - 07 ART 3
    JANUARY - 07 GFSCWAC 1
    JANUARY - 08 ACCN 15
    JANUARY - 08 ACCW 13
    JANUARY - 08 ART 4
    JANUARY - 08 GFSCWAC 2
    JULY - 07 ACCN 8
    JULY - 07 ACCW 13
    JULY - 07 ART 2
    JULY - 07 BUO 1
    JUNE - 07 ACCN 15
    JUNE - 07 ACCW 10
    JUNE - 07 ART 2
    JUNE - 07 FCZ 1
    JUNE - 07 FSCN 1
    JUNE - 08 ACCW 1
    JUNE - 08 ART 1
    JUNE - 08 GS 2
    JUNE - 08 GSCN 3
    MARCH - 07 ACCN 18
    MARCH - 07 ACCW 7
    MARCH - 07 GS 30
    MARCH - 08 ACCN 13
    MARCH - 08 ACCW 9
    MARCH - 08 GFSCWAC 1
    MARCH - 08 GS 55
    MARCH - 08 GSCN 79
    MAY - 07 ACCN 10
    MAY - 07 ACCW 8
    MAY - 07 ART 4
    MAY - 07 FSCN 1
    MAY - 08 ACCN 4
    MAY - 08 ACCW 3
    MAY - 08 ART 1
    MAY - 08 FACCW 1
    MAY - 08 GS 11
    NOVEMBER - 07 ACCN 15
    NOVEMBER - 07 ACCW 12
    NOVEMBER - 07 ART 1
    NOVEMBER - 07 GS 32
    NOVEMBER - 07 GSCN 70
    OCTOBER - 07 ACCN 14
    OCTOBER - 07 ACCW 7
    OCTOBER - 07 ART 1
    OCTOBER - 07 FACCW 1
    OCTOBER - 07 GS 38
    SEPTEMBER - 07 ACCN 8
    SEPTEMBER - 07 ACCW 9
    SEPTEMBER - 07 ART 1
    SEPTEMBER - 07 DCTACEN 1
    SEPTEMBER - 07 DCTEN 2
    Please suggest me the Solution
    Thank You....

    U r right. It will give error.I am sorry for it. I am sending the correct code. I think it will work.
    SELECT TO_CHAR(TO_DATE(PD,'MM-YY'),'MONTH')||'--'||TO_CHAR(TO_DATE(PD,'MM-YY'),'YY') DATE,class_code_c,COUNTS
    FROM
    SELECT TO_CHAR (TRUNC (TO_DATE (poh_date_d), 'MM'), 'MM') || ' - ' || TO_CHAR (TO_DATE (poh_date_d), 'YY') pd,
    class_code_c, COUNT (coach_no_c) COUNTS
    FROM mecd_coach_m
    WHERE poh_date_d BETWEEN TO_DATE ('01-JAN-07') AND TO_DATE (SYSDATE)
    AND poh_stn_c = 'MTN'
    GROUP BY TO_CHAR (TRUNC (TO_DATE (poh_date_d), 'MM'), 'MM') || ' - ' || TO_CHAR (TO_DATE (poh_date_d), 'YY'),
    class_code_c
    ORDER BY TO_CHAR (TRUNC (TO_DATE (poh_date_d), 'mm'), 'MM') || ' - '
    || TO_CHAR (TO_DATE (poh_date_d), 'YY'))
    For checking:
    select to_char(to_date(dt,'mm--yyyy'),'month')||'--'||to_char(to_date(dt,'mm--yyyy'),'yyyy'),SUM
    from
    (select to_char(hire_date,'mm')||'--'||to_char(hire_date,'yyyy') dt,sum(salary) SUM from employees
    group by to_char(hire_date,'mm')||'--'||to_char(hire_date,'yyyy')
    order by
    to_char(hire_date,'mm')||'--'||to_char(hire_date,'yyyy'))

  • How To: Sort Numbers in Ascending Order in a Generated List

    Greetings! How do I set up a Generated List of Paragraphs so that it sorts in true ascending order? What I want is:
    1.1
    1.2
    1.3
    1.4
    1.5
    1.6
    1.7
    1.8
    1.9
    1.10
    I have tried every trick I can think of with the sort order listed on the reference page. But all I can get is something that sorts by individual number (ignoring the numeric value) like:
    1.1
    1.10
    1.11
    1.2
    1.20
    1.21
    1.3
    Any help is much appreciated!

    Hello there, Michael! Thanks so much for looking at my post! Alas, the LOP will not work. I should have explained more, but it was so complicated I thought folks would give up reading.
    Here's the best I can render it without getting permission to share a good example document. I do not blame anyone if it's too cumbersome or convoluted to wade through...
    This is a requirements document which has sort of a "legal" tinge to it--as the document evolves we must maintain traceability for individual requirements. This means, for example:
    Version 1 - I have requirements 1 and 2.
    Version 2 - I need to add a new requirement, which should appear before requirement 1 in the document. Even though it comes before requirement 1 in the document, numerically it will be requirement 3 and requirement 1 will remain requirement 1.
    Version 3 - I need to remove requirement 2. Even though I now have only 2 requirements, their numbers will not change (they remain requirements 1 and 3, appearing in reverse order).
    Version 4 - I need to move requirement 3 to be after requirement 1. Again, the requirements keep their original number, even though their position has changed and there is no longer a "requirement 2" number in use.
    Originally, I told the team (I'm doing this for a different dept), that they would have to hand-number requirements, which they did for a while. But that was getting very cumbersome, and the scenarios above are limited to one or two occurrences per document. So I created an auto-number sequence for them to use in the initial version and added a little smoke-and-mirrors work process to take care of changes in later versions. The last bit of chicanery I cannot get to work is the index...
    Even if there are no changes to the requirements after the initial version, the index still does not sort in ascending numeric order. It was working with the hand-numbered requirements because they were using leading zeros. But without being able to include leading zeros in the auto-numbering formats (I tried the "use a zero as a tab leader" solution and like to have thrown my new monitor out of the window), I cannot find a solution.
    Or rather, I think the solution is "you have to hand-number requirements".
    For anyone who has made it this far, I truly appreciate your time and patience!
    SFT

  • Apache: showing images in ascending order by name

    hi:
    i have several detail pages where i show images contained in
    a folder:
    $folder = dir($path);
    while ($folderEntry = $folder->read()){
    if ($folderEntry <> "." && $folderEntry
    <> ".." &&
    substr($folderEntry, -6, 2) <> "00") {
    echo '<li><img src="'.$path.$folderEntry.'"
    /></li>';
    $folder->close();
    in the local server they appear in the way i want, in
    ascending order by
    name (img_01.jpg, img_02.jpg, img_03.jpg, ...) but in the
    remote server
    they appear in, apparently, random order
    i activated FancyIndexing in the httpd.conf file but it
    doesn't solved
    the problem:
    # Directives controlling the display of server-generated
    directory
    listings.
    # FancyIndexing is whether you want fancy directory indexing
    or
    standard
    IndexOptions FancyIndexing
    # End of indexing directives.
    i know i can store the filenames names in an array an sort it
    but i
    prefer to control it in the server
    local (OS X 10.4.10)
    Apache/1.3.33 (Darwin) PHP/5.1.6
    remote (Red Hat Linux 2.6.9-34.ELsmp)
    Apache/2.0.52
    tia,
    jdoe

    Templeton's suggestion is best if needing help with Microsoft Entourage. Since I know the answer is "not possible" I can at least steer you toward an AppleScript that will give you a workaround. Have a look here <http://www.barryw.net/weblog/files/category-5.html>.
    Further questions about this script should be directed either to its author or to Microsoft's Entourage newsgroup <http://groups.google.com/group/microsoft.public.mac.office.entourage>.
    Hope this helps! bill
    1 GHz Powerbook G4   Mac OS X (10.4.9)  

  • I want  to know making a program in  ascending order....

    hi to all...happy holidays
    i have a code of mine but it doesn't work, pls help me...
    class Sorting{     
              void sort(int[]a){
              int i,j;
              int temp;
              for (i=0;i<a.length-1;i++)
                   for (j=i+1;j<a.length;j++)
                        if (a[j]<a)
                             temp=a[j];
                             a[j]=a[i];
                             a[i]=temp;
    that code is for 500 numbers i try to be in ascending order but i doesnt work...
    i want it also that when I type the number it says that these are the numbers i type....Can someone help with a sample code even just up to 11 numbers it accept and displays the number i type first before the output in ascending order....
    Thanks a lot for consideration and help....

    How about:public class Hello {
         public static void main(String[] args) {
              Hello hi = new Hello();
              int[] b = {5,3,7,2,1};
              hi.sort(b);
              for (int k=0; k < b.length; k++)
                   System.out.println(b[k]);
         void sort(int[] a){
              int temp;          
              for (int i=0; i < a.length-1; i++) {
                   for (int j=i+1; j < a.length; j++) {
                        if (a[j] < a) {
                             temp=a[j];
                             a[j]=a[i];
                             a[i]=temp;

  • How to select Most recent record with rest of record in ascending order...?

    Dear Expert,
    I have one table called Tab1 & have a lot columns. For this schenario, i mentioned few of the columns.
    The columns are
    product_type varchar2(100),
    curr_date date (storing with time stamp),
    other1_cloumn varchar2(10),
    other2_cloumn varchar2(10)
    Now I want to display all the records in ascending order except most recent record for every product_type || Union all || Most recent records in ascending order in single query.
    For example...
    product_type curr_date date other1_cloumn other2_cloumn
    1, "10-May-2005 10:10:10", 10, 10
    1, "10-May-2005 10:10:11", 10, 10
    1, "10-May-2005 10:10:12", 10, 10
    1, "10-May-2005 10:10:09", 10, 10
    2, "10-May-2005 10:10:10", 10, 10
    2, "10-May-2005 10:10:11", 10, 10
    2, "10-May-2005 10:10:12", 10, 10
    2, "10-May-2005 10:10:09", 10, 10
    3, "10-May-2005 10:10:10", 10, 10
    3, "10-May-2005 10:10:11", 10, 10
    3, "10-May-2005 10:10:12", 10, 10
    3, "10-May-2005 10:10:09", 10, 10
    Now I want to display (OUTPUT) like...
    1, "10-May-2005 10:10:10", 10, 10
    1, "10-May-2005 10:10:11", 10, 10
    1, "10-May-2005 10:10:09", 10, 10
    2, "10-May-2005 10:10:10", 10, 10
    2, "10-May-2005 10:10:11", 10, 10
    2, "10-May-2005 10:10:09", 10, 10
    3, "10-May-2005 10:10:10", 10, 10
    3, "10-May-2005 10:10:11", 10, 10
    3, "10-May-2005 10:10:09", 10, 10
    1, "10-May-2005 10:10:12", 10, 10
    2, "10-May-2005 10:10:12", 10, 10
    3, "10-May-2005 10:10:12", 10, 10
    Plz, provide a solution....

    I want to display like...
    select * from tab1 where (product_type,curr_date) in
    (select product_type,max(curr_date) from tab1 group by product_type)
    order by product_type
    Union All
    (select * from tab1 where (product_type,curr_date) NOT IN
    (select product_type,max(curr_date) from tab1 group by product_type)
    order by product_type)
    But, In the above case, The ORDER BY Clause will not work...How to get this one...?
    I mean.. I want to display all the records in ascending order except Most recent record base on Product type and next I want to display Most recent record in ascending order. I want to display both cases in a single query...?

  • Ascending Order in Data Level

    Hi Friends,
    I have a table xxx and it has two columns col1 and col2 and below is the data for these columns.
    Col1 Col2
    111 5,6,9,2,1
    211 10,12,8,9
    311 6,7,8,1,2,3,4
    Below is the required output;
    Col1 Col2
    111 1,2,5,6,9
    211 8,9,10,12
    311 1,2,3,4,6,7,8
    I want the column level data in the ascending order. Please help me on this.
    Regards,
    Williams
    Edited by: Williams on Sep 24, 2012 7:11 PM

    Hi, Sankar,
    Here's one way:
    (1) Split each string into multiple rows, one row for each item in the delimited list. (This is how the data should be stored in the frist place.) See {message:id=10095021}
    (2) Use the analytic ROW_NUMEBR (or DENSE_RANK, depending on your requirements) to number the rows 1, 2, 3, ..., using "PARTITION BY col1" to get a separate set of numbers for each value of col1.
    (3) Use String Aggregation to combine the rows into one row per col1. See
    http://www.oracle-base.com/articles/10g/StringAggregationTechniques.php
    If you get stuck, post your best attempt, along with a little sample data (CREATE TABLE and INSERT statements, relevant columns only) from all tables involved.
    Also post the results you want from that data, and an explanation of how you get those results from that data, with specific examples.
    Simplify the problem as much as possible. Remove all tables and columns that play no role in this problem.
    Always say which version of Oracle you're using (for example, 11.2.0.2.0).
    See the forum FAQ {message:id=9360002}

  • I´m a frequent user of personalized tags on my contacts.  When I update to iOS7.0.2, my tags don't appear on alphabetical order as they were on the other system. I already made a restoration of the system and it didn't work. Is there any way to fix them?

    I´m a frequent user of personalized tags on my contacts.  When I update to iOS7.0.2, my tags don’t appear on alphabetical order as they were on the other system. I already made a restoration of the system and it didn’t work. Is there any way to fix them?

    I´m taking about the "CUSTOM LABELS"

  • Freed Goods not appearing in Returns Order

    Hi Friends,
    We are trying to configure the Free Goods scenario in our system. The free goods have been successfully configured for outbound sales orders. However, in case of returns, when we create a return order, the free good does not appear on the order.
    How can we configure the returns orders for free goods.
    Regards,
    Abhishek

    Hi,
    Please also check whether you have done item category determinaiton for that Return order..
    Retun order type + Item catergory group + Usage + Higher level item category + item category..
    And also have a look into free goods record in VBN1 tcode..
    Let us know how come your are creating return order without any reference. Please explain the senario..
    regards
    sankar
    Edited by: sankar sankar on Jul 9, 2008 12:54 PM

  • How to sort  the arry value in ascending order

    I have a string array where i need to sort the below values in ascending order in the same format...can anyone give me clue on this?
    9.3
    3.1
    9.1
    19.1
    19
    9.4
    9.1.1
    the sorted order should be
    3.1
    9.1
    9.1.1
    9.3
    9.4
    19
    19.1

    You may have easier luck writing your own comparator for this. These are headings in a table of contents, right?
    Write a comparator that tokenizes a string on the '.' character, or use a StringBuffer to remove them, and then order the elements according to the combined numbers. Since alphanumeric would order this list as you want it anyway you could just order that way once the '.' are removed.
    In other words your comparator would do this in the "compare" method:
    public class MyComparator implements Comparator, java.io.Serializable {
    private static Comparator stringComparator = java.text.Collator.getInstance();
    ...constructor(s), your own private "instance" variable of type MyComparator, a getInstance() method of your own, yadda yadda...
    public int compare(Object item1, Object item2) {
    try {
    value1 = removePeriods((String)item1);
    value2 = removePeriods((String)item2);
    if (value1 == null) {
    return (value2 == null) ? 0 : (-1);
    return compare(value1, value2);
    } catch (ClassCastException cce) {
    System.err.println("Wrong Object Type, JackAss!");
    protected int compare(String str1, String str2) {
    return MyComparator.stringComparator.compare(str1, str2);
    private String removePeriods(String value) {
    StringBuffer sb = new StringBuffer(value);
    int decimalIndex = value.indexOf('.');
    while (decimalIndex != -1) {
    sb.delete(decimalIndex, (decimalIndex + 1));
    }

  • Accessing the records in ascending order using index hint

    I am getting a problem in selecting the rows using the index hint which in i want to query in the ascending order.
    for eg.
    select /*+ index(temp_itr_header,tmp_itrhdr_1#IDX2) */ person_id
    from temp_itr_header

    Oracle knows that it doesn't have to resort data if it accessed individual rows from an index with the same sort order. In other words, adding the ORDER BY clause need not cause Oracle to do any extra work. Adding the ORDER BY does guarantee that the results will be sorted and will tend to cause Oracle to use the index, assuming it can avoid the sort that way. If you don't have an ORDER BY, Oracle is free to return rows in whatever order it would like regardless of your hint.
    If you want to use the index hint, the syntax is
    SELECT /*+ INDEX(temp_itr_header <<index name>>) */Note that you do not want to have a comma in your hint. Of course, if your statistics are accurate, you shouldn't need to resort to a hint here-- the CBO should pick the most efficient path.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Items not appearing in alphabetical order

    Hi folks,
    When a user here clicks on File - Open, her items do not appear in alphabetical order.  She has to right click - Arrange By - Name.
    However its in alphabetical order on mine.
    Any idea how I can set hers to alphabetical order all the time?
    Many thanks,
    G

    In the File open dialog box you can change the order the files are listed. I frequently use Date Modified so I can see the ones I most often use at the top. You change the order the files are listed the same way you do in Finder (on a Mac) and in Windows Explorer on a PC.

Maybe you are looking for

  • How can I keep attachments from embedding in emails?

    When I put an 'attachment' with my email, it embeds into the email and doesn't keep it as an attachment even though this is what I asked the mail to do.  The recipient of the email is unable to separate multiple attachments such as a group of photos.

  • Itune synch issue

    Recently I purchased iPAD3. I have issue in synchronisation of my ipad with my HP laptop. My laptop runs with Windows 7 (64bit). I have installed iTune compatible to my laptop. Whenever I am connecting my ipad to my laptop, it is not shown in "DEVICE

  • Is it possible to contact the App Store to dispute charges

    I have unauthorized charges on my Apple App Store, anyone know how to dispute as there is no phone number for Apple?

  • No advanced mode on Mac OSX?

    I'm usin the VPN client 4.9.01 on Mac OX 10.6 and I can not activate the advanced mode in order to set up or configure connections. The software starts in simple mode, CMD+M does not doe anything and if I click on 'Options' the Advanced Mode is greye

  • Import data from Excel to iCal?

    Hey, I'm trying to import date from en Excel file to iCal. I have a column with dates, one with start times, one with the location and one with the events. Is there an app to help me? Perhaps some Automator actions? I've never worked with Applescript