반응형

jQuery 2277

Postgresql 어댑터 (pg) : 서버에 연결할 수 없습니다.

Postgresql 어댑터 (pg) : 서버에 연결할 수 없습니다. Rails 앱을 실행할 때 마다이 오류가 발생합니다 ( 로컬 Postgresql에 연결할 수 없습니다 ) /Users/leonardo/.rvm/gems/ruby-1.9.3-p362/gems/activerecord-3.2.11/lib/ active_record/connection_adapters/postgresql_adapter.rb:1208:in `initialize': could not connect to server: No such file or directory (PG::Error) Is the server running locally and accepting connections on Unix domain socket "/var/..

program tip 2020.11.19

유니 코드 문자열에서 악센트를 제거하는 쉬운 방법?

유니 코드 문자열에서 악센트를 제거하는 쉬운 방법? 이 질문에 이미 답변이 있습니다. 악센트를 제거하고 전체 문자열을 일반 문자로 변환하는 방법이 있습니까? 11 답변 이 문장을 변경하고 싶습니다. Et ça sera sa moitié. 받는 사람 : Et ca sera sa moitie. Objective-C에서와 같이 Java에서 쉽게 수행 할 수있는 방법이 있습니까? NSString *str = @"Et ça sera sa moitié."; NSData *data = [str dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES]; NSString *newStr = [[NSString alloc] initWithData:data enco..

program tip 2020.11.19

"캐시 된 버전이 없습니다… 오프라인 모드에서 사용할 수 있습니다."

"캐시 된 버전이 없습니다… 오프라인 모드에서 사용할 수 있습니다." Android Studio에서 새 Hello World 프로젝트를 빌드하는 동안 오류 메시지를 받았습니다. FAILURE: Build failed with an exception. * What went wrong: A problem occurred configuring root project 'MyApplication2'. > Could not resolve all dependencies for configuration ':classpath'. > Could not resolve com.android.tools.build:gradle:0.9.1. Required by: :MyApplication2:unspecified > No cach..

program tip 2020.11.19

Android : 파일 생성 날짜를 얻는 방법은 무엇입니까?

Android : 파일 생성 날짜를 얻는 방법은 무엇입니까? 이것은 내 코드입니다. File TempFiles = new File(Tempfilepath); if (TempFiles.exists()) { String[] child = TempFiles.list(); for (int i = 0; i < child.length; i++) { Log.i("File: " + child[i] + " creation date ?"); // how to get file creation date..? } } 파일 생성 날짜는 사용할 수 없지만 마지막 수정 날짜 는 확인할 수 있습니다 . File file = new File(filePath); Date lastModDate = new Date(file.lastModif..

program tip 2020.11.19

Android : GridView에서 강조 표시 비활성화

Android : GridView에서 강조 표시 비활성화 GridView에서 항목을 클릭 할 때 주황색 강조 표시를 끄려면 어떻게해야합니까? 문서 나 테스트를 통해 해결책을 찾지 못했습니다. XML 레이아웃 파일 android:listSelector="#00000000"의 GridView요소에서 사용하십시오 . 또 다른 옵션은 @android : color / transparent를 통해 투명 색상을 참조하는 것입니다. 나는 코드에서 똑같은 일을했다. GridView.setSelector(new ColorDrawable(Color.TRANSPARENT)); Gridview에이 속성 추가 android:listSelector="@android:color/transparent" 끝난! 이것은 해결책입니다. ..

program tip 2020.11.19

Android에서 base64 문자열로 비트 맵 객체 인코딩 및 디코딩

Android에서 base64 문자열로 비트 맵 객체 인코딩 및 디코딩 Bitmap문자열로 개체 를 인코딩하고 디코딩하고 싶습니다 base64. Android API10을 사용합니다. 이 형식의 메서드를 사용하여 Bitmap. public static String encodeTobase64(Bitmap image) { Bitmap immagex=image; ByteArrayOutputStream baos = new ByteArrayOutputStream(); immagex.compress(Bitmap.CompressFormat.JPEG, 100, baos); byte[] b = baos.toByteArray(); String imageEncoded = Base64.encodeToString(b,Base6..

program tip 2020.11.19

Javascript, Google지도 마커 색상 변경

Javascript, Google지도 마커 색상 변경 Javascript를 통해 Google Map 마커 색상을 변경하는 방법을 알려 주시겠습니까?. 저는 이것에 익숙하지 않으며 어떤 도움을 주시면 감사하겠습니다. 감사합니다. 다음 코드를 사용하여 마커를 만들었습니다. marker = new google.maps.Marker({ position: new google.maps.LatLng(locations[i][1], locations[i][2]), animation: google.maps.Animation.DROP, map: map }); Google Maps API v3에서는 마커 아이콘을 변경할 수 있습니다. 예를 들어 녹색 아이콘 사용 : marker.setIcon('http://maps.googl..

program tip 2020.11.19

homebrew로 이전 버전의 mongodb를 설치하는 방법은 무엇입니까?

homebrew로 이전 버전의 mongodb를 설치하는 방법은 무엇입니까? osx6.8을 사용 중이고 이전 버전의 Mongodb를 설치해야합니다. HomeBrew로 이전 버전을 설치하려면 어떻게해야합니까? 아래는 작동하지 않았습니다. dream-2:app2 star$ brew install mongodb-2.6.10 Error: No available formula for mongodb-2.6.10 Searching formulae... Searching taps... dream-2:app2 star$ (((** 편집 :이 게시물이 다른 게시물과 비교하여 어떻게 고유한지 설명하는 메시지를 받았습니다. 다른 질문에 대한 답변은 매우 길고 복잡하며 postgresql에만 해당되며 실제로 내 답변이 아닙니다...

program tip 2020.11.19

웹 소켓이 닫히는 코드 1006으로 닫히는 이유 얻기

웹 소켓이 닫히는 코드 1006으로 닫히는 이유 얻기 사용자에게 올바른 메시지를 보여줄 수 있도록 웹 소켓이 닫힌 이유를 알고 싶습니다. 나는 가지고있다 sok.onerror=function (evt) {//since there is an error, sockets will close so... sok.onclose=function(e){ console.log("WebSocket Error: " , e);} 코드는 항상 1006이고 이유는 항상 ""입니다. 그러나 나는 다른 종결 이유를 구분하고 싶습니다. 예를 들어 명령 줄은 "데이터베이스가 허용하지 않기 때문에 삭제할 수 없습니다"라는 오류 이유를 제공합니다. 하지만 Chrome 콘솔에서 그 이유는 여전히 ""입니다. 다른 종결 이유를 구분하는 다른 ..

program tip 2020.11.18
반응형