'Programming > xml' 카테고리의 다른 글
xmllint string() (0) | 2019.07.25 |
---|---|
libxml2 - xmlNodeDump() (0) | 2019.07.09 |
xmlstarlet (0) | 2016.05.26 |
DOM vs SAX (0) | 2014.11.21 |
xml parser 선택 / 종류 (0) | 2014.11.21 |
xmllint string() (0) | 2019.07.25 |
---|---|
libxml2 - xmlNodeDump() (0) | 2019.07.09 |
xmlstarlet (0) | 2016.05.26 |
DOM vs SAX (0) | 2014.11.21 |
xml parser 선택 / 종류 (0) | 2014.11.21 |
read
[링크 : https://stackabuse.com/reading-a-file-line-by-line-in-node-js/]
write
[링크 : https://nodejs.org/api/fs.html#fs_fs_createwritestream_path_options]
[링크 : https://nodejs.org/api/stream.html#stream_writable_write_chunk_encoding_callback]
[링크 : https://nodejs.org/api/fs.html#fs_class_fs_writestream]
[링크 : https://stackoverflow.com/questions/9486683/writing-large-files-with-node-js]
node.js xpath select() select1() (0) | 2019.07.25 |
---|---|
node.js xpath apidoc (0) | 2019.07.25 |
node.js 메모리 사용 가능 용량 늘리기 (0) | 2019.06.21 |
node.js fs.createreadstream highWaterMark (0) | 2019.06.19 |
node.js xml2js (0) | 2019.06.19 |
간단하게 java에서 XML 을 쓰기 위한 프레임워크, 혹은 라이브러리라고 보면 되려나?
[링크 : https://ko.wikipedia.org/wiki/JAXB]
[링크 : https://ukzzang.tistory.com/12]
[링크 : https://coding-start.tistory.com/36]
[링크 : https://howtodoinjava.com/jaxb/read-xml-to-java-object/]
[링크 : http://www.javawebtutor.com/articles/jaxb/jaxb_java_class_from_xsd.php]
java oop 개념 (0) | 2020.01.15 |
---|---|
java cipher (0) | 2019.11.25 |
jar 실행하기 (0) | 2019.01.15 |
Object.clone() (2) | 2019.01.09 |
javax print (0) | 2019.01.03 |
python의 expat을 써보려는데 원하는대로 안되서 멘붕 중
xmlparser.ParseFile(file) Parse XML data reading from the object file. file only needs to provide the read(nbytes) method, returning the empty string when there’s no more data. |
[링크 : https://docs.python.org/3.1/library/pyexpat.html]
>>> r = open('18549666.xml') >>> p.ParseFile(r) Traceback (most recent call last): File "", line 1, in TypeError: read() did not return a bytes object (type=str) |
rb(read binary)가 중요한거였냐..
>>> r = open('18549666.xml','rb') |
[링크 : https://stackoverflow.com/questions/1179305/expat-parsing-in-python-3]
tensorflow, pytorch (0) | 2019.12.10 |
---|---|
python pip 특정 버전설치 / 목록에서 설치 (0) | 2019.09.09 |
ubuntu에서 python으로 postgres 접속하기 (0) | 2019.06.24 |
python pip 특정 버전 설치하기 (0) | 2019.06.18 |
python pdb를 이용한 디버깅 (0) | 2019.05.15 |
$ sudo apt install postgresql-server-dev-all $ pip3 install psycopg2 $ python3 import psycopg2 as pg2 |
python pip 특정 버전설치 / 목록에서 설치 (0) | 2019.09.09 |
---|---|
python expat parseFile() (0) | 2019.06.24 |
python pip 특정 버전 설치하기 (0) | 2019.06.18 |
python pdb를 이용한 디버깅 (0) | 2019.05.15 |
anaconda(python) (0) | 2019.05.15 |
헐.. api 발급 안 받아서 지도가 안뜬걸 메모리 부족해서 그런걸로 나 착각한겨?
(내 2만원.. ㅠㅠ)
[링크 : https://blog.cosmosfarm.com/archives/389/구글-지도-api-키-발급-받는-방법-maps-javascript-api/]
안드로이드 http / REST 요청 앱 만들기 준비 (0) | 2020.05.09 |
---|---|
failed to find target with hash string 'android-27' (0) | 2019.08.08 |
android studio /dev/kvm permission denied (0) | 2019.06.11 |
ubuntu android studio (0) | 2019.06.10 |
안드로이드 무선 디버깅(adb wifi) (0) | 2019.03.14 |
효과가 있는진 확인 못함..
(그 메모리 용량 가기 전에 느려지는 것으로 보여 xml-stream 모듈에 문제가 있는 걸로 보임)
[링크 : https://stackoverflow.com/questions/38558989/node-js-heap-out-of-memory]
node.js xpath apidoc (0) | 2019.07.25 |
---|---|
node.js readline() (0) | 2019.06.28 |
node.js fs.createreadstream highWaterMark (0) | 2019.06.19 |
node.js xml2js (0) | 2019.06.19 |
node.js Javascript heap out of memory (0) | 2019.06.19 |
스트림으로 읽어오는 놈을 찾다 보니 이런게 있는데..
희한하게(?) 너무 뜨문뜨문 읽어서 확인해보니
한번에 읽어오는 용량을 설정할수 있고 기본 값은 64kb 라고.. (kB가 아니라?)
Unlike the 16 kb default highWaterMark for a readable stream, the stream returned by this method has a default highWaterMark of 64 kb. options can include start and end values to read a range of bytes from the file instead of the entire file. Both start and end are inclusive and start counting at 0, allowed values are in the [0, Number.MAX_SAFE_INTEGER] range. If fd is specified and start is omitted or undefined, fs.createReadStream() reads sequentially from the current file position. The encoding can be any one of those accepted by Buffer. |
[링크 : https://nodejs.org/api/fs.html#fs_fs_createreadstream_path_options]
[링크 : https://stackoverflow.com/questions/24005496/nodejs-copying-file-over-a-stream-is-very-slow]
node.js readline() (0) | 2019.06.28 |
---|---|
node.js 메모리 사용 가능 용량 늘리기 (0) | 2019.06.21 |
node.js xml2js (0) | 2019.06.19 |
node.js Javascript heap out of memory (0) | 2019.06.19 |
node.js 용량 제한(?) (0) | 2019.06.18 |
스트림이 아니라 XML 파일이 1기가 넘어가면 한번에 못 읽음
[링크 : https://www.npmjs.com/package/xml2js]
스트림 파서라 용량 제한없이 읽을수 있음
[링크 : https://www.npmjs.com/package/xml-stream]
xml2js 보다 엄청 빠르다는데 안써봄
[링크 : https://www.npmjs.com/package/fast-xml-parser]
node.js 메모리 사용 가능 용량 늘리기 (0) | 2019.06.21 |
---|---|
node.js fs.createreadstream highWaterMark (0) | 2019.06.19 |
node.js Javascript heap out of memory (0) | 2019.06.19 |
node.js 용량 제한(?) (0) | 2019.06.18 |
electron ipc (0) | 2019.06.07 |
참으로 다양하게 죽여보는구만.. -_-a
FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory 1: node::Abort() [node] 2: 0x5605160f2011 [node] 3: v8::Utils::ReportOOMFailure(char const*, bool) [node] 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [node] 5: v8::internal::Factory::NewCode(v8::internal::CodeDesc const&, unsigned int, v8::internal::Handle, bool, int) [node] 6: v8::internal::CodeGenerator::MakeCodeEpilogue(v8::internal::TurboAssembler*, v8::internal::EhFrameWriter*, v8::internal::CompilationInfo*, v8::internal::Handle) [node] 7: v8::internal::compiler::CodeGenerator::FinalizeCode() [node] 8: v8::internal::compiler::PipelineImpl::FinalizeCode() [node] 9: v8::internal::compiler::PipelineCompilationJob::FinalizeJobImpl() [node] 10: v8::internal::CompilationJob::FinalizeJob() [node] 11: v8::internal::Compiler::FinalizeCompilationJob(v8::internal::CompilationJob*) [node] 12: v8::internal::OptimizingCompileDispatcher::InstallOptimizedFunctions() [node] 13: v8::internal::StackGuard::HandleInterrupts() [node] 14: v8::internal::Runtime_StackGuard(int, v8::internal::Object**, v8::internal::Isolate*) [node] 15: 0x2557162840bd |
팔자에 없는 GC 공부하는 중.. 끄응..
node.js fs.createreadstream highWaterMark (0) | 2019.06.19 |
---|---|
node.js xml2js (0) | 2019.06.19 |
node.js 용량 제한(?) (0) | 2019.06.18 |
electron ipc (0) | 2019.06.07 |
electron.js (0) | 2019.06.03 |