RemoteException android.os.TransactionTooLargeException: data parcel size xxxx bytes
程序员文章站
2022-04-15 18:07:02
...
基于android p平台上使用aidl作为接口给其他apk调用的使用过程中遇到了报异常RemoteException android.os.TransactionTooLargeException;
使用aidl接口传输camera数据流时,当设置的分辨率比较大时,就会其他的应用调用的aidl接口出现接收不到数据的问题,通过打印处理的log发现出现了RemoteException android.os.TransactionTooLargeException: data parcel size xxxx bytes的错误。从源码中查看TransactionTooLargeException类有如下说明:
/**
* The Binder transaction failed because it was too large.
* <p>
* During a remote procedure call, the arguments and the return value of the call
* are transferred as {@link Parcel} objects stored in the Binder transaction buffer.
* If the arguments or the return value are too large to fit in the transaction buffer,
* then the call will fail and {@link TransactionTooLargeException} will be thrown.
* </p><p>
* The Binder transaction buffer has a limited fixed size, currently 1Mb, which
* is shared by all transactions in progress for the process. Consequently this
* exception can be thrown when there are many transactions in progress even when
* most of the individual transactions are of moderate size.
* </p><p>
* There are two possible outcomes when a remote procedure call throws
* {@link TransactionTooLargeException}. Either the client was unable to send
* its request to the service (most likely if the arguments were too large to fit in
* the transaction buffer), or the service was unable to send its response back
* to the client (most likely if the return value was too large to fit
* in the transaction buffer). It is not possible to tell which of these outcomes
* actually occurred. The client should assume that a partial failure occurred.
* </p><p>
* The key to avoiding {@link TransactionTooLargeException} is to keep all
* transactions relatively small. Try to minimize the amount of memory needed to create
* a {@link Parcel} for the arguments and the return value of the remote procedure call.
* Avoid transferring huge arrays of strings or large bitmaps.
* If possible, try to break up big requests into smaller pieces.
* </p><p>
* If you are implementing a service, it may help to impose size or complexity
* contraints on the queries that clients can perform. For example, if the result set
* could become large, then don't allow the client to request more than a few records
* at a time. Alternately, instead of returning all of the available data all at once,
* return the essential information first and make the client ask for additional information
* later as needed.
* </p>
*/
public class TransactionTooLargeException extends RemoteException {
public TransactionTooLargeException() {
super();
}
public TransactionTooLargeException(String msg) {
super(msg);
}
}
从上面的说明可用知道:Binder事务缓冲区具有固定大小限制,当前为固定大小限制1Mb,由进程正在进行的所有事务共享。 因此,即使大多数单个事务的大小适中,当有许多事务正在进行时,也可能会抛出此异常
上一篇: 2009年10个Java技术解决方案
下一篇: ajax的get请求与post请求
推荐阅读
-
Viewpager+Fragment 跳转Activity报错android.os.TransactionTooLargeException: data parcel size xxxxx bytes
-
Viewpager+Fragment 跳转Activity报错android.os.TransactionTooLargeException: data parcel size xxxxx bytes
-
RemoteException android.os.TransactionTooLargeException: data parcel size xxxx bytes
-
android.os.TransactionTooLargeException: data parcel size 538184
-
android.os.TransactionTooLargeException: data parcel size xxxx bytes
-
Intent传递数据大小限制问题:android.os.TransactionTooLargeException: data parcel size xxxxxxx bytes
-
TransactionTooLargeException: data parcel size 1341720 bytes
-
Viewpager+Fragment 跳转Activity报错android.os.TransactionTooLargeException: data parcel size xxxxx bytes
-
Android开发Error(建议收藏下来以备不时之需)android.os.TransactionTooLargeException: data parcel size xxxx bytes...
-
安卓开发android.os.TransactionTooLargeException: data parcel size bytes异常分析及解决办法