문자열 비교 StrComp(문자열1, 문자열2, compare[ 0 : 이진비교, 1 : 텍스트 비교]) 문자열1, 문자열 은 필수 값. compare 는 0 또는 1로 옵션값. 기본 0. 결과값은 -1 문자열1 이 문자열2 보다 작음 0 문자열1 과 문자열2 동일함 1 문자열1 이 문자열2 보다 큼 null 문자열1 이나 문자열2 가 null 인 경우 If StrComp("TEST","TEST1") = 0 Then response.write "문자열이 동일합니다." Else response.write "문자열이 다릅니다." End If
아이폰에는 back 버튼이 없지만, 안드로이드 폰에서는 back 버튼을 통해서 이전 화면으로 되돌아 가게 된다.@override Widget build(BuildContext context) { return WillPopScope( onWillPop: () async => false, child: DefaultTextStyle( // 위젯들이 있다 치고... ), ); } onWillPop: () async => false, 위의 코드 추가로 WillPopScope 에서 이전 화면으로 되돌아 가는 문제가 해결 되었다.
1. 서버에서 내려 주는 문자열{"RESULT":"OK","MESSAGE":"로그인 되었습니다.","NEXTPAGE":"/main"} 2. model 개체 생성class Login { String RESULT; String MESSAGE; String NEXTPAGE; Login({ this.RESULT, this.MESSAGE, this.NEXTPAGE, }); factory Login.fromJson(Map parsedJson) { return Login( RESULT: parsedJson['RESULT'], MESSAGE: parsedJson['MESSAGE'], NEXTPAGE: parsedJson['NEXTPAGE'], ); } } 3. 파싱 코드var data= new model.Login.f..
http 패키지(https://pub.dartlang.org/packages/http) 를 이용하여 문자열을 내려 받을때 한글이 깨지는 경우final response = await http .post('https://targeturl.pr.kr', body: {'userid' : userid.text, 'userpw' : userpw.text}) .timeout(Duration(seconds: 3)); if (response.statusCode == 200) { print('데이터 수신 ' + response.contentLength.toString() + 'byte'); print(response.body); // 한글 깨짐 print(utf8.decode(response.bodyBytes)); // ..
아래는 Cupertino 에서 새로운 화면을 띄우는 코드 onPressed: () { Navigator.of(context, rootNavigator: true).push( CupertinoPageRoute( fullscreenDialog: false, builder: (BuildContext context) => LoginApp(title : '로그인'), ), ); } fullscreenDialog 의 값이 true 인 경우 화면을 swipe 하여 이전 화면으로 돌아갈 수 없다. false 인 경우 화면의 왼쪽을 swipe 하여 이전 화면으로 돌아갈 수 있다. 아래는 띄워진 화면에서 이전 화면으로 가는 코드 onPressed: () { Navigator.of(context, rootNavigator:..
- Total
- Today
- Yesterday
- 엘리스센터
- kotlin
- food
- TIP
- Security
- gpkiapi
- dart
- Compile
- Fun
- Java
- Spring
- web
- MySQL
- Linux
- Review
- Mobile
- development
- ssh
- JavaScript
- devtools
- samba
- 맛집
- springboot
- HTTP
- SSL
- json parse
- place
- Flutter
- devel
- Android
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |