"함수 readAllText()"의 두 판 사이의 차이

잔글 (Jmnote 사용자가 함수 file get contents 문서를 함수 file get contents() 문서로 옮겼습니다)
77번째 줄: 77번째 줄:
==PHP==
==PHP==
[[category: PHP]]
[[category: PHP]]
{{참고|PHP file_get_contents()}}
<source lang='php'>
<source lang='php'>
$str = file_get_contents('test.txt');
$str = file_get_contents('test.txt');

2015년 7월 14일 (화) 09:34 판

file_get_contents
read
ReadAllText

1 Bash

str=`cat test.txt`
# John Smith

2 Cmd

for /f "delims=" %a in ('type test.txt') do @set str=%a
echo %str%

3 C#

string str = System.IO.File.ReadAllText(@"test.txt");
// John Smith
public static string file_get_contents(string filepath)
{
   try
   {
       if (filepath.ToLower().IndexOf("tp://") > 0)
       {
           System.Net.WebClient wc = new System.Net.WebClient();
           byte[] response = wc.DownloadData(filepath);
           return System.Text.Encoding.UTF8.GetString(response);
       }
       System.IO.StreamReader sr = new System.IO.StreamReader(filepath);
       string contents = sr.ReadToEnd();
       sr.Close();
       return contents;
   }
   catch
   {
       return "";
   }
}

4 Objective-C

//  ViewController.h
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController <NSURLConnectionDelegate> {
    NSURLConnection* urlconn;
}
@end
//  ViewController.m
#import "ViewController.h"
@interface ViewController ()
@end

@implementation ViewController
- (void)viewDidLoad {
    [super viewDidLoad];
    urlconn = [[NSURLConnection alloc] initWithRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://zetawiki.com/utf8test.txt"]] delegate:self];
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
    NSLog(@"%@", [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]);
}
@end

5 PHP

$str = file_get_contents('test.txt');
// John Smith

6 Python

with open('name.txt', 'w') as w: w.write('His name is\nJohn Smith')

f = open('name.txt', 'r')
print( f.read() )
f.close()
# His name is
# John Smith
f = open('name.txt')
print( f.read() )
f.close()
with open('name.txt') as f:
    print( f.read() )

7 Ruby

str = open('test.txt').read
# John Smith
require 'open-uri'
h = open('http://zetawiki.com/utf8test.txt');
contents = h.read
print contents

8 UnityScript

var www:WWW = new WWW("http://zetawiki.com/utf8test.txt");
yield www;
Debug.Log(www.text);

9 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}