Java Scanner Read loadAWSCredentails(String file_path)

Here you can find the source of loadAWSCredentails(String file_path)

Description

load AWS Credentails

License

Open Source License

Declaration

public static AWSCredentials loadAWSCredentails(String file_path) throws java.io.IOException 

Method Source Code

//package com.java2s;
/*//from ww w  .  j ava  2  s .co  m
Copyright (c) 2010 baldrickv
    
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
    
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
    
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/

import java.io.FileInputStream;
import java.util.Scanner;
import com.amazonaws.auth.BasicAWSCredentials;
import com.amazonaws.auth.AWSCredentials;

public class Main {
    public static AWSCredentials loadAWSCredentails(String file_path) throws java.io.IOException {
        FileInputStream fin = new FileInputStream(file_path);

        Scanner scan = new Scanner(fin);

        String id = scan.next();
        String key = scan.next();

        fin.close();

        return new BasicAWSCredentials(id, key);

    }
}

Related

  1. getThreadScanner()
  2. load(Class cls, String location)
  3. load(File in)
  4. load(final String fileName)
  5. load(InputStream in, int elementCountOverride)
  6. loadBooleanArray(BufferedReader in)
  7. loadConf()
  8. loadDoubleArray(Scanner reader)
  9. loadDoubleMatrix(Scanner reader)