Java Object Deserialize from File deserialize(String filePath)

Here you can find the source of deserialize(String filePath)

Description

deserialize

License

Apache License

Declaration

@SuppressWarnings("unchecked")
    public static <T> T deserialize(String filePath) throws IOException 

Method Source Code

//package com.java2s;
/*//from   w  w  w.  j a  v a  2s . c  o m
 * Copyright 2013
 * Ubiquitous Knowledge Processing (UKP) Lab
 * Technische Universit?t Darmstadt
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.io.File;
import java.io.FileInputStream;

import java.io.IOException;
import java.io.ObjectInputStream;

public class Main {
    @SuppressWarnings("unchecked")
    public static <T> T deserialize(String filePath) throws IOException {
        try (ObjectInputStream in = new ObjectInputStream(
                new FileInputStream(new File(filePath)))) {
            return (T) in.readObject();
        } catch (ClassNotFoundException e) {
            throw new IOException(e);
        }
    }
}

Related

  1. deserialize(final String path)
  2. deserialize(String fileName)
  3. deserialize(String filename)
  4. deserialize(String filename)
  5. Deserialize(String filePath)
  6. deserialize(String fName)
  7. deserialize(String fname)
  8. deserialize(String path)
  9. deserialize(String path)