How do I store word documents on my iPad or iPhone 5?

how do I store word documents on my iPad or iPhone 5?

Have a look at the following:
http://itunes.apple.com/sg/app/quickoffice-pro-hd-edit-office/id376212724?mt=8&l s=1
http://itunes.apple.com/sg/app/office2-hd/id364361728?mt=8&ls=1
http://itunes.apple.com/sg/app/documents-to-go-premium-office/id317107309?mt=8&l s=1
http://itunes.apple.com/sg/app/polaris-office/id513188658?mt=8&ls=1

Similar Messages

  • How can i save a document on my ipad or iphone like my resume in word and be able to attach it and u

    How can i save my resume to my ipad so that i can post it to sites as needed?

    My first few hours with iTunes Match and it seems like Apple are moving ever closer towards the Microsoft model. ran Match, worked fine; took a while but no worries so far. I then use my iPad to play some tracks on the Cloud via Airplay. The tracks download. They play. They show up on iTunes when I sync. They take up space. I can't get rid of them. I follow the above instructions and delete some playlists from my iPad. That works, but no wait - the playlists are also gone from iTunes.
    I will take a break now because this is the opposite of fun. Can anyone explain how to delete music downloaded onto my iPad without it affecting the content or playlists on my iTunes library please?

  • How to insert a word document or an RTF document into RichTextEditor?

    How to insert a word document or an RTF document into af:richTextEditor. I am using Apache POI for reading the Word document and getting its contents. I am able to display the whole content of the document except the table and image within the document. The data in the table is getting displayed as a string and not as a table inside the editor.
    Can we insert a word/RTF document into a rich text editor?
    Can we insert images into the rich text editor?
    The following is the code that I used. On clicking a button the word document has to be inserted into the <af:richTextEditor>.
    <af:richTextEditor id="rte1" autoSubmit="true"
    immediate="true"
    columns="110" rows="20">
    <af:dropTarget dropListener="#{SendEmail.richTextEditorDrop}">
    <af:dataFlavor flavorClass="java.lang.String"/>
    </af:dropTarget>
    </af:richTextEditor>
    <af:commandButton text="Insert at position" id="cb2">
    <af:richTextEditorInsertBehavior for="rte1" value="#{RichTextEditorUtil.docFile}"/>
    </af:commandButton>
    Java Code: I am using Apache POI for reading the word document.
    import org.apache.poi.hwpf.HWPFDocument;
    import org.apache.poi.hwpf.extractor.WordExtractor;
    public String getDocFile() {
    File docFile = null;
    WordExtractor docExtractor = null ;
    WordExtractor exprExtractor = null ;
    try {
    docFile = new File("C:/temp/test.doc");
    //A FileInputStream obtains input bytes from a file.
    FileInputStream fis=new FileInputStream(docFile.getAbsolutePath());
    //A HWPFDocument used to read document file from FileInputStream
    HWPFDocument doc=new HWPFDocument(fis);
    docExtractor = new WordExtractor(doc);
    catch(Exception exep)
    System.out.println(exep.getMessage());
    //This Array stores each line from the document file.
    String [] docArray = docExtractor.getParagraphText();
    String fileContent = "";
    for(int i=0;i<docArray.length;i++)
    if(docArray[i] != null)
    System.out.println("Line "+ i +" : " + docArray);
    fileContent += docArray[i] + "\n";
    System.out.println(fileContent);
    return fileContent;

    Hi,
    images are not yet supported. Its an open enhancement request for the rich text editor.
    For tables, it seems they are supported but in a basic way (just HTML 4 style) if I interpret the tag documentation correct
    http://download.oracle.com/docs/cd/E15523_01/apirefs.1111/e12419/tagdoc/af_richTextEditor.html
    Frank

  • How can I copy Word Document and save them in my iPad?

    Hi,  I just recieved my iPad 3 today. I've never used the Apple format before.  All of my recipes are in Microsoft Word all neatly organized, there are many... I mean a lifetime of them and I'm old!  I bought the iPad to use it in the kitchen and for the life of me I can't seem to figure out how to transfer my Word files to my iPad and put them in a document folder.  Can anyone help?  I sure would appreiciate it. 

    There are no document folders in the iPad. Files and documents are saved within the app that is used to create, edit and view the corresponding files. You need an app that can read and edit Word files and you will be able to save the files within that app.
    You can email files, use DropBox or another cloud service, use iOS file sharing or use iCloud - if you use one of the Apple iWorks apps - in this case it would be Pages.
    There are MS Office compatible apps available in the app store like Quick Office Pro and Documents to Go. Take a look at those and see what you think.
    This is a link to Apple's word processing app - Pages

  • How to Append two  word documents into single  using   java

    How to Append two word documents into single using java
    we tried this but it's not append the one word document to other
    source code:public class AppendTwoWordFiles {
         public static void main(String []arg)throws IOException
              FileInputStream fi=null;
              FileOutputStream fo=null;
              try {
                   System.out.println("Enter the source file name u want to append");
                   BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
                   File f1=new File(br.readLine().toString());
                   System.out.println("Enter the Destination file name ");
                   File f2=new File(br.readLine().toString());
                   fi = new FileInputStream(f1);
                   fo = new FileOutputStream(f2,true);
                   byte b[]=new byte[2];
                   while((fi.read(b))!=-1);
              fo.write(b);
    System.out.println("Successfully append the file");
              } catch (FileNotFoundException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              } catch (IOException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              finally{
              fi.close();
              fo.close();
    plz reply me quickly ,,,what can i follow

    Use this code ..
    and give the path of the both file like this.....
    source file ---- C:/workspace/Practice/src/com/moksha/ws/test/practice.text
    destination file ---- C:/workspace/City/src/com/moksha/ws/test/practice1.text
    import java.io.*;
    public class AppendTwoWordFiles {
         public static void main(String[] arg) throws IOException {
              FileInputStream fi = null;
              FileOutputStream fo = null;
              try {
                   System.out.println("Enter the source file name u want to append");
                   BufferedReader br = new BufferedReader(new InputStreamReader(
                             System.in));
                   File f1 = new File(br.readLine().toString());
                   System.out.println("Enter the Destination file name ");
                   File f2 = new File(br.readLine().toString());
                   fi = new FileInputStream(f1);
                   fo = new FileOutputStream(f2, true);
                   byte b[] = new byte[2];
                   int len = 0;
                   while ((len = fi.read(b)) > 0) {
                        fo.write(b, 0, len);
                   System.out.println("Successfully append the file");
              } catch (FileNotFoundException e) {
                   e.printStackTrace();
              } catch (IOException e) {
                   e.printStackTrace();
              } finally {
                   fi.close();
                   fo.close();
    }

  • HT1284 How can I backup word documents and not have them crowd my screen? Thanks.

    Hi. How can I backup word documents and not have them crowd my screen? I know, you guessed it. I'm a novice, but not ashamed!

    Please explain what you mean when you say backup Word documents crowds your screen.
    I don't see any connection between backup and your screen.
    Allan

  • I want to know how to turn a word document into a jpeg so I can put the document on Facebook as a picture. I have made posters and if I do a print screen they are unable to be read, or if i turn it into a PDF there is no save as jpeg??

    I want to know how to turn a word document into a jpeg so I can put the document on Facebook as a picture. I have made posters and if I do a print screen they are unable to be read, or if i turn it into a PDF there is no save as jpeg??

    iOS device backups are stored in your iTunes library.
    Move your iTunes library to an external drive.

  • How to convert a Word Document to SAP SCript standard text.

    Hi team,
    Does any one know how to convert a word document or text in Word format to standard text.
    So that we can use that standard text in Script output.
    This might be very useful if we need to convert a lot of text into standard text.

    Hi,
    Create the name of the standard text you want in SO10.
    When the editor is called up, select Text -> Upload and then browse for your file(s). Must be saved in RTF format in Word remember.
    Cheers
    Colin.

  • How to open a word document in safari?

    How do I open a Microsoft Word document on my ipad using Safari?

    I assume that the site is not optimized for iOS/mobile browsers, if that is the behavior that you are seeing. You could try downloading an alternative browser that identifies as a desktop browser like Mercury Browser. There is a free version that I am using right now. You can identify as a desktop browser by tapping the Settings Icon and choosing for User Agent in the lower right corner.
    Perhaps if the site recognizes the browser as a desktop version, it will work for this purpose. If it doesn't work, you have lost nothing but a little bit of time. If it does work and you like Mercury, you can purchase the full version.
    I have the Full version of Mercury, iCab Mobile, Atomic, Dolphin, and Google Chrome which will all identify as desktop browsers.

  • Using ipod to store word documents?

    is there any way to store word documents on your ipod? what about being able to read them from your ipod screen?

    To store them on your iPod your iPod you need to enable disk use...
    Using Your iPod As A Hard Disk
    To view them on your iPod...
    http://docs.info.apple.com/article.html?artnum=93951
    (You need to save them as text files and then drag them to the notes folder on iPod.
    btabz

  • How do I edit word document attachments

    HI,
    i have a new iPad for work. I have installed both the free word app and the Polaris office app. I am able to receive word attachments and view them, but it won't allow me to open them for editing in the apps. I hold on the attachment, but the option to open with the app is not there. It will also not allow me to choose to email newly created word documents from the iPad in Word or Polaris Office.
    PLease help.
    Thanks,

    I have installed both the free word app
    The original free word app didn't support editing.  Microsoft recently announce the free app would support limited editing. You need office 365 to do full editing.
    Free apps
    Apple iWork
    iWork by Apple  -- free with newly purchased iPads
    Keynote
    How to compose PowerPoint presentations that are compatible with iPad Keynote presentations. http://www.pchelps.com/2011/06/from-pc-to-ipad-creating-presentations-that-work/ #comment-2234
    Numbers
    Pages
        http://www.imore.com/how-get-all-iwork-apps-iphoto-and-imovie-free-eligible-ipho ne-or-ipad
        iWork for iCloud Beta
        https://www.apple.com/iwork-for-icloud/
    Citrix ShareFile QuickEdit
    "Is the simplest document-editing tool available for iOS devices. Open, view, create and edit Microsoft® Word, Excel® and PowerPoint® files — right from your iPod®, iPhone® or iPad®!" Was Office² HD.
    https://itunes.apple.com/gb/app/id364361728?mt=8
    Kingsoft Office
    "Read, edit PowerPoint files, and read Word documents on your iPhone or iPad, Share it by cloud storage."
    http://www.kingsoftstore.com/office-free-ios
    Quickoffice
    Quickoffice is an application available for iOS and Android tablets and phones that lets you view, create, and edit Microsoft Office, as well as view and annotate PDF files. Connect Google Drive to Quickoffice for cloud storage so that you can easily access and edit files from your tablet, phone, or computer and know that your files are always up-to-date
    https://support.google.com/quickoffice/answer/2986862?hl=en&ref_topic=2986859
    CloudOn
    Client front end to a Microsoft Office running on a server
    "CloudOn brings Microsoft Office® to your iPhone & iPad and links it to your Box, Dropbox, Google Drive and SkyDrive accounts."  Free for a give number of documents.
    https://itunes.apple.com/us/app/cloudon/id474025452?mt=8

  • How do I transfer powerpoint and word documents to my ipad with the new itunes?

    how do I transfer powerpoint and word documents to my ipad with the new itunes?

    Have a look at the following:
    http://itunes.apple.com/sg/app/quickoffice-pro-hd-edit-office/id376212724?mt=8&l s=1
    http://itunes.apple.com/sg/app/office2-hd/id364361728?mt=8&ls=1
    http://itunes.apple.com/sg/app/documents-to-go-premium-office/id317107309?mt=8&l s=1
    http://itunes.apple.com/sg/app/polaris-office/id513188658?mt=8&ls=1

  • How can I make word document window bigger. Have tried dragging bottom corner out & clicking on '+' sign but this does nothing?

    How can I make word document window bigger. Have tried dragging bottom corner out & clicking on '+' sign but this does nothing?

    Word - Microsoft Support

  • How to convert a word document into the PDF format?

    Please instruct me step by step on how to convert several Word documents into the PDF format?

    If properly installed and updated (depending on the WORD version), you can simply do any of the following:
    1. Open the doc in WORD and select Print, choose the Adobe PDF printer, print.
    2. Open the doc in WORD and go to the Acrobat menu in WORD and select create PDF (this uses PDF Maker).
    3. Open the doc in Acrobat and the conversion should be done based on PDF Maker.

  • How can i open microsoft office word documents on my ipad 4 and edit it.

    How can i open microsoft office word documents on my ipad 4 and edit it. How to transfer my scaned documents on it

    There are a number of apps that are compatible with Office documents. Apple makes iOS versions of their own iWork apps (Pages, Keynote, Numbers) that are available free if you purchase a new iOS device and that can be purchased separately for older devices. There are also 3rd party combined suites that cost less than the separate Apple apps. Ones often recommended include Documents 2 Go,  Quickoffice and Office2 HD.
    If you can accept needing a network connection whenever you want to use the apps and have an Office 365 subscription, Microsoft has just released their Office Mobile app, though it has significant limitations. Or a server-based solution such as CloudOn might be an option for you.
    Regards.

Maybe you are looking for

  • Some asset classes do not show up for a user in S_ALR_87011990

    Hi When the asset history sheet is run in S_ALR_87011990, a user is unable to display some asset classes in the report. This was referred to security team. They say that everything looks fine and nothing appears wrong for that user--roles and profile

  • New to Blackberry family. Having email issues.

    Ok gang, I'm sure you are tired of helping people with this matter but my wife bought me a Curve recently. I upgraded my hotmail account to a hotmail plus account.so that i could get the emails on my phone. For some reason everytime I get a email it

  • Problem in BOM explosion for a operation Sub Contract.

    Hi All, Please advise how to explode a BOM or Assign component in a Purchase order with Item category (L) for a Operation SubContract External Processing  oriented material for which no material code is created from a Series Operation production orde

  • Forgot to eject my Ipod before powering down PC

    I accidentally powered down my notebook without ejecting my IPod Nano. Now my computer starts up with a black screen with "Press <Esc> to change boot order Press <F10> to enter setup but will not respond if I press Esc or F10. Need help!!! Thanks.

  • Premiere CC crashes after update (Lion to Mavericks)

    Hey guys, So I installed Mavericks on my OSX and now my Premiere CC does not work. When I open it, it immediately crashes and says Adobe Premiere PRo CC Quit Unexpecedly. This is after I installed the new Mavericks OSX on my system. I tried reinstall