我有一个文件列表,对于每个文件,我在JAVA中有以下代码从第二个文件跳过一行。文件可以是4KB或最大小于8KB。这种方法很有效。是否有任何有效的方法可以跳过第一行。我只得到列表中第一个文件的标题。
return Observable.fromPromise(getBlob(id))
.mergeMap((blob) => {
// Create inner observable based on the blob
return Observable.fromPromise(blobToBase64(blob))
// Map the inner result to keep the blob variable
.map((base64) => {
return {base64, blob};
})
}).subscribe((result) => {
console.log(result.blob, result.base64);
});
到目前为止一直运作良好。我想知道这是否是最佳方法。