Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Android SDカードのファイルの内容を、オフセットまたはすでに内容のあるファイルのサイズと同じサイズに置き換える方法
と
あなたも使うことができますRandomAccessFile
RandomAccessFile
RandomAccessFile raf = new RandomAccessFile(yourfile, "rw"); raf.seek(theStartingPosition) raf.write(...)