Android File Write writeContatctInfo(String accountId, Vector contactInfo, File contactInfoFile)

Here you can find the source of writeContatctInfo(String accountId, Vector contactInfo, File contactInfoFile)

Description

write Contatct Info

License

Open Source License

Declaration

public static void writeContatctInfo(String accountId,
            Vector contactInfo, File contactInfoFile) throws IOException 

Method Source Code

//package com.java2s;
/*/*from   www  .j a v a2  s  . c om*/

 The Martus(tm) free, social justice documentation and
 monitoring software. Copyright (C) 2002-2007, Beneficent
 Technology, Inc. (The Benetech Initiative).

 Martus is free software; you can redistribute it and/or
 modify it under the terms of the GNU General Public License
 as published by the Free Software Foundation; either
 version 2 of the License, or (at your option) any later
 version with the additions and exceptions described in the
 accompanying Martus license file entitled "license.txt".

 It is distributed WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, including warranties of fitness of purpose or
 merchantability.  See the accompanying Martus License and
 GPL license for more details on the required license terms
 for this software.

 You should have received a copy of the GNU General Public
 License along with this program; if not, write to the Free
 Software Foundation, Inc., 59 Temple Place - Suite 330,
 Boston, MA 02111-1307, USA.

 */

import java.io.DataOutputStream;
import java.io.File;

import java.io.FileOutputStream;

import java.io.IOException;

import java.util.Vector;

public class Main {
    public static void writeContatctInfo(String accountId,
            Vector contactInfo, File contactInfoFile) throws IOException {
        contactInfoFile.getParentFile().mkdirs();
        FileOutputStream contactFileOutputStream = new FileOutputStream(
                contactInfoFile);
        DataOutputStream out = new DataOutputStream(contactFileOutputStream);
        out.writeUTF((String) contactInfo.get(0));
        out.writeInt(((Integer) (contactInfo.get(1))).intValue());
        for (int i = 2; i < contactInfo.size(); ++i) {
            out.writeUTF((String) contactInfo.get(i));
        }
        out.close();
    }
}

Related

  1. writeFile(File file, String data)
  2. writeFile(File file, byte[] data)
  3. writeInstallationFile(File installation)
  4. writeOneLine(String filename, String value)