GVKun编程网logo

PHPExcel_Style_Fill无限递归(php递归无限分类)

9

想了解PHPExcel_Style_Fill无限递归的新动态吗?本文将为您提供详细的信息,我们还将为您解答关于php递归无限分类的相关问题,此外,我们还将为您介绍关于30个PHP的Excel处理类,p

想了解PHPExcel_Style_Fill无限递归的新动态吗?本文将为您提供详细的信息,我们还将为您解答关于php递归无限分类的相关问题,此外,我们还将为您介绍关于30 个 PHP 的 Excel 处理类,phpexcel_PHP教程、android-adb-[INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION]、Excel无限列怎么删除 Excel无限列删除不了问题解析、INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION的新知识。

本文目录一览:

PHPExcel_Style_Fill无限递归(php递归无限分类)

PHPExcel_Style_Fill无限递归(php递归无限分类)

我使用库 PHPExcel 1.7.9来处理Excel文件.首先,我创建一个模板,风格和抛光它.然后,为避免样式硬编码,使用上面提到的库我打开该模板,更改一些值并将其另存为新的.xlsx文件.

首先,我们从单元格中获取该样式.

$this->styles = array() ;
$this->styles['category'] = $sheet->getStyle("A4");
$this->styles['subcategory'] = $sheet->getStyle("A5");

这是递归函数,它显示类别和子类别.

private function displayCategories($categories,&$row,$level = 0){
    $sheet = $this->content ;

    foreach($categories as $category){
        if ($category->hasChildren() || $category->hasItems()){ //Check if the row has changed.
            $sheet->getRowDimension($row)->setRowHeight(20);
            $sheet->mergeCells(Cell::NUMBER . $row . ":" . Cell::TOTAL . $row) ;

            $name = ($level == 0) ? strtoupper($category->name) : str_repeat(" ",$level*6) ."- {$category->name}" ;
            $sheet->setCellValue(Cell::NUMBER . $row,$name) ;
            $sheet->duplicateStyle((($level == 0) ?  $this->styles['category'] : $this->styles['subcategory']),Cell::NUMBER . $row);

            $row++ ;
            if ($category->hasChildren()){
                $this->displayCategories($category->children,$row,$level+1);
            }
        }
    }   
}

问题

如果使用$sheet-> duplicateStyle(),由于无限递归,将无法保存文档.

Maximum function nesting level of ‘200’ reached,aborting! <- Fatal error

问题出在下一段代码中,在PHPExcel_Style_Fill类中,一个对象反复引用自己.

public function getHashCode() { //class PHPExcel_Style_Fill
    if ($this->_isSupervisor) { 
        var_dump($this === $this->getSharedComponent()); //Always true 200 times
        return $this->getSharedComponent()->getHashCode();
    }
    return md5(
          $this->getFillType()
        . $this->getRotation()
        . $this->getStartColor()->getHashCode()
        . $this->getEndColor()->getHashCode()
        . __CLASS__
    );
}

有没有解决方法可以解决这个问题?我也接受任何有关如何将一个完整的单元格应用于另一个单元格的想法.

解:

正如@MarkBaker在评论中所说,GitHub上的分支开发确实包含对bug的修复.

编辑我添加了一个带有修复的拉取请求: https://github.com/PHPOffice/PHPExcel/pull/251

当您尝试将单元格的样式复制到同一单元格时会发生这种情况;看看这个:

$PHPe = new PHPExcel();
$sheet = $PHPe->createSheet();

$sheet->setCellValue('A1','hi there') ;
$sheet->setCellValue('A2','hi again') ;

$sheet->duplicateStyle($sheet->getStyle('A1'),'A2');

$writer = new PHPExcel_Writer_Excel2007($PHPe);
$writer->save('./test.xlsx');

它会工作得很好.但如果我添加另一行这样:

$sheet->duplicateStyle($sheet->getStyle('A1'),'A1');

然后爆炸,在调用save方法后开始无限递归

要修复代码,您应该修改此部分:

$sheet->duplicateStyle((($level == 0) ?  $this->styles['category'] : $this->styles['subcategory']),Cell::NUMBER . $row);

对于以下内容:

$style = ($level == 0) ?  $this->styles['category'] : $this->styles['subcategory'];
$targetCoords = Cell::NUMBER . $row;
if($style->getActiveCell() != $targetCoords) {
    $sheet->duplicateStyle($style,$targetCoords);
}

30 个 PHP 的 Excel 处理类,phpexcel_PHP教程

30 个 PHP 的 Excel 处理类,phpexcel_PHP教程

30 个 php 的 excel 处理类,phpexcel

下面的 php excel 处理类中,包含 excel 读写、导入导出等相关的类,列表如下:

 PHP Excel Reader classes

  1. Read Excel Spreadsheets using COM

  Umesh Rai (India)

  2. Read Excel Binary .XLS Files in Pure PHP

  Ruslan V. Uss (Russian Federation)

  3. Read Excel Spreadsheets using ODBC

  khalil Majdalawi (Jordan)

  4. Read Excel Worksheets in XML format (.XLSX)

  Andrew Aculana (Phillippines)

立即学习“PHP免费学习笔记(深入)”;

  5. Read Simple Excel XML files (.XLSX)

  Sergey Shuchkin (Russian Federation)

  6. Read Excel generated CSV files

  Ben Vautier (Australia)

  PHP Excel Writer classes

  7. Write Excel Binary file (.XLS) from Array data

  Sergey Sergeevich (Russian Federation)

  8. Generate Excel files using templates

  Skrol29 (France)

  9. Write Excel XML (.XLSX) files

  Harish Chauhan (India)

  10. Write Excel-compatible CSV files in pure PHP

  H. Poort (The Nederlands)

  11. Write Excel binary files (.XLS) based on Perl ExcelWriter

  Xavier Noguer (Chile)

 PHP Excel Import classes

  12. Import Excel cells pasted as CSV in a form input

  Gianluca Zanferrari (Italy)

  13. Import data from MySQL to Excel

  Harish Chauhan (India)

  14. Import MySQL database table records into binary Excel file (.XLS)

  dzaiacuck (Brazil)

  15. Import data from MySQL to Excel HTML

  raju mazumder (Bangladesh)

  16. Import data from MySQL to Excel Sheets and Charts

  Rafael de Pablo (Spain)

  17. Import data from MySQL and serve Excel file for download

  Erh-Wen, Kuo (United States)

  18. Import MySQL table columns into Excel XML file (.XLSX)

  Gianluca Zanferrari (Italy)

  19. Import MySQL, PostgreSQL, SQLite and SQL Server database tables into Excel files

  enri_pin (Greece)

 PHP Excel Export classes

  20. Export data from Excel to JSON format

  Karl Holz (Canada)

 PHP Excel Reader and Writer classes

  21. Read and write Excel binary (.XLS) or XML (.XLS) or CVS files

  Craig Smith (New Zealand)

  22. Manipulate Excel spreadsheet files in XML format

  Herry Ramli (Indonesia)

  23. Modify Excel spreadsheet files in XML format (.XLSX)

  Ilya Eliseev (Russian Federation)

  24. Manipulate Excel spreadsheet files using COM objects

  Alain Samoun

 Special PHP Excel Classes

  25. Reading and writing Excel files as if they were files using a stream handler

  Ignatius Teo (Australia)

  26. Excel MROUND function

  Steve Winnington (United Kingdom)

  27. Excel Financial Functions

  Enrique Garcia M. (Colombia)

  28. Indexing Excel and other file types for searching with Lucene

  Giampaolo Losito (Italy)

  29. Retrieve Application Internationalization Texts from Excel files

  Johan Barbier (France)

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1021465.htmlTechArticle30 个 PHP 的 Excel 处理类,phpexcel 下面的 PHP Excel 处理类中,包含 Excel 读写、导入导出等相关的类,列表如下: PHP Excel Reader classes 1.Read Exc...

android-adb-[INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION]

android-adb-[INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION]

更改提取的APK中的文件时,我将其重新压缩,将扩展名更改为.apk,然后按以下方式安装:

$adb install CustomAPK.apk 
2831 KB/s (41896599 bytes in 14.450s)
    pkg: /data/local/tmp/CustomAPK.apk
Failure [INSTALL_PARSE_Failed_UNEXPECTED_EXCEPTION]

这是怎么回事

解决方法:

生成密钥并签名apk:Android Developer Website

Signing Your App Manually

You do not need Android Studio to sign your app. You can sign your app from the command line using standard tools from the Android SDK and the JDK. To sign an app in release mode from the command line:

Generate a private key using keytool. For example:

$keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000

  
  本示例提示您输入密钥库和密钥的密码,并提供密钥的专有名称字段.然后,它将密钥库生成为名为my-release-key.keystore的文件.密钥库包含单个密钥,有效期为10000天.别名是您在以后对应用程序进行签名时使用的名称.
  
  在发布模式下编译您的应用,以获取未签名的APK.
  使用jarsigner使用私钥对应用程序签名:
  
  

$jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore my_application.apk alias_name

  
  本示例提示您输入密钥库和密钥的密码.然后,它就地修改APK以对其进行签名.请注意,您可以使用不同的键多次对APK进行签名.
  
  确认您的APK已签名.例如:
  
  

$jarsigner -verify -verbose -certs my_application.apk

  
  使用zipalign对齐最终的APK包.
  
  

$zipalign -v 4 your_project_name-unaligned.apk your_project_name.apk

  
  zipalign确保所有未压缩的数据以相对于文件开头的特定字节对齐开头,从而减少了应用程序消耗的RAM数量.

Excel无限列怎么删除 Excel无限列删除不了问题解析

Excel无限列怎么删除 Excel无限列删除不了问题解析

excel无限列怎么删除?excel表格是我们日常生活中都会使用到的一款办公软件,他可以帮助我们快速的整理自己的数据,不过也有不少的用户们在使用的过程中发现无线列不会删除,那么这要怎么解决?下面就让本站来为用户们来仔细的介绍一下excel无限列删除不了问题解析吧。excel无限列删除不了问题解析方法一1、首先选中想要删除的空白行的首行,同时点击键盘上的额ctrl+shift+向下箭头,如果多余空白行在右侧,就选右箭头,然后全选全部无用空格行。2、右键点击删除。3、删除之后啥都不要做,直接点击左上方的保存,然后关闭excel表格,再重新打开。

excel无限列怎么删除 excel无限列删除不了问题解析

方法二
  1. 按住 Ctrl + Shift + 向下箭头即可选中全部空白行。
  2. 接着点击上方工具栏的橡皮擦,在点击选择 清除格式 即可。

php小编小新:在使用 PHP 时,你是否曾遇到过难以处理大型数组的情况?方法三提供了将大型数组拆分成更小块的实用技巧。通过简单的步骤,你可以有效地管理和处理大型数组,从而提升代码性能和可维护性。继续阅读以深入了解方法三,并掌握在 PHP 中有效处理大型数组的秘诀。

  1. 首先选中第一列,然后点击 查找和替换,选择 定位条件。
  2. 选择 空白,然后点击 确定,再将整行删除。
  3. 最后一步直接保存。

以上就是Excel无限列怎么删除 Excel无限列删除不了问题解析的详细内容,更多请关注php中文网其它相关文章!

INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION

INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION

如何解决INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION?

我在使用 Android 安装 Android 时遇到问题。构建成功完成,但安装失败并显示 INSTALL_PARSE_Failed_UNEXPECTED_EXCEPTION。

我在网上找到的大多数解决方案都要求将包名更改为全部小写,但我的包名是小写的。我一直在四处闲逛,但我对 Android 开发不太熟悉,所以没有运气。

4:运行输出

02/21 17:23:17: Launching ''app'' on Pixel 4 API 30.
Installation did not succeed.
The application Could not be installed: INSTALL_PARSE_Failed_UNEXPECTED_EXCEPTION

List of apks:
[0] ''/Users/myusername/Repositories/FedML-Mobile/android/app/build/outputs/apk/debug/app-debug.apk''
Installation Failed due to: ''null''
Retry

6:Logcat 输出

2021-02-21 17:25:09.752 373-373/? W/adbd: timeout expired while flushing socket,closing
2021-02-21 17:25:12.732 373-373/? W/adbd: timeout expired while flushing socket,closing
2021-02-21 17:25:15.371 457-457/? E/netmgr: qemu_pipe_open_ns:62: Could not connect to the ''pipe:qemud:network'' service: Invalid argument
2021-02-21 17:25:15.371 457-457/? E/netmgr: Failed to open QEMU pipe ''qemud:network'': Invalid argument
2021-02-21 17:25:15.653 494-823/? W/ActivityManager: Invalid packageName: ai.fedml.android
2021-02-21 17:25:15.655 15149-15151/? I/cmd: oneway function results will be dropped but finished with status OK and parcel size 4
2021-02-21 17:25:15.760 15156-15159/? I/cmd: oneway function results will be dropped but finished with status OK and parcel size 4
2021-02-21 17:25:15.817 15157-15157/? E/studio.deploy: Could not get package user id: run-as: unkNown package: ai.fedml.android
2021-02-21 17:25:15.838 15157-15157/? E/studio.deploy: Could not find apks for this package: ai.fedml.android
2021-02-21 17:25:15.838 15157-15157/? E/studio.deploy: Error: 
2021-02-21 17:25:15.893 15165-15168/? I/cmd: oneway function results will be dropped but finished with status OK and parcel size 4
2021-02-21 17:25:16.741 494-514/? E/JobScheduler.Background: App com.google.android.gms became active but still in NEVER bucket
2021-02-21 17:25:16.744 494-526/? I/DropBoxManagerService: add tag=system_server_wtf isTagEnabled=true flags=0x2
2021-02-21 17:25:17.337 463-463/? E/wifi_forwarder: qemu_pipe_open_ns:62: Could not connect to the ''pipe:qemud:wififorward'' service: Invalid argument
2021-02-21 17:25:17.337 463-463/? E/wifi_forwarder: RemoteConnection Failed to initialize: RemoteConnection Failed to open pipe
2021-02-21 17:25:18.758 494-526/? W/broadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBox_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.stats.service.DropBoxEntryAddedReceiver
2021-02-21 17:25:18.758 494-526/? W/broadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBox_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver
2021-02-21 17:25:46.616 15169-15172/? I/cmd: oneway function results will be dropped but finished with status OK and parcel size 4
2021-02-21 17:25:48.058 494-514/? E/JobScheduler.Background: App com.google.android.gms became active but still in NEVER bucket
2021-02-21 17:25:48.063 494-526/? I/DropBoxManagerService: add tag=system_server_wtf isTagEnabled=true flags=0x2
2021-02-21 17:25:48.078 13256-13256/? I/Finsky: [2] aosy.b(3): Verification requested,id = 18
2021-02-21 17:25:48.093 494-596/? W/AppIntegrityManagerServiceImpl: Exception reading file:///data/app/vmdl1167639721.tmp
    android.content.pm.PackageParser$PackageParserException: Failed to read manifest from /data/app/vmdl1167639721.tmp/base.apk
        at com.android.server.pm.parsing.PackageParser2.parsePackage(PackageParser2.java:155)
        at com.android.server.integrity.AppIntegrityManagerServiceImpl.getPackageArchiveInfo(AppIntegrityManagerServiceImpl.java:579)
        at com.android.server.integrity.AppIntegrityManagerServiceImpl.handleIntegrityVerification(AppIntegrityManagerServiceImpl.java:297)
        at com.android.server.integrity.AppIntegrityManagerServiceImpl.access$100(AppIntegrityManagerServiceImpl.java:97)
        at com.android.server.integrity.AppIntegrityManagerServiceImpl$1.lambda$onReceive$0$AppIntegrityManagerServiceImpl$1(AppIntegrityManagerServiceImpl.java:180)
        at com.android.server.integrity.-$$Lambda$AppIntegrityManagerServiceImpl$1$AQicMJqZVSufBnAD8HJ81gPtf7Y.run(UnkNown Source:4)
        at android.os.Handler.handleCallback(Handler.java:938)
        at android.os.Handler.dispatchMessage(Handler.java:99)
        at android.os.Looper.loop(Looper.java:223)
        at android.os.HandlerThread.run(HandlerThread.java:67)
     Caused by: java.lang.classCastException: android.content.pm.parsing.component.ParsedService cannot be cast to java.lang.String
        at android.content.pm.parsing.component.ComponentParseUtils.buildProcessName(ComponentParseUtils.java:100)
        at android.content.pm.parsing.component.ParsedMainComponentUtils.parseMainComponent(ParsedMainComponentUtils.java:83)
        at android.content.pm.parsing.component.ParsedServiceUtils.parseService(ParsedServiceUtils.java:60)
        at android.content.pm.parsing.ParsingPackageUtils.parseBaseApplication(ParsingPackageUtils.java:1845)
        at android.content.pm.parsing.ParsingPackageUtils.parseBaseApkTags(ParsingPackageUtils.java:753)
        at android.content.pm.parsing.ParsingPackageUtils.parseBaseApk(ParsingPackageUtils.java:494)
        at android.content.pm.parsing.ParsingPackageUtils.parseBaseApk(ParsingPackageUtils.java:372)
        at android.content.pm.parsing.ParsingPackageUtils.parseClusterPackage(ParsingPackageUtils.java:278)
        at android.content.pm.parsing.ParsingPackageUtils.parsePackage(ParsingPackageUtils.java:232)
        at com.android.server.pm.parsing.PackageParser2.parsePackage(PackageParser2.java:152)
        at com.android.server.integrity.AppIntegrityManagerServiceImpl.getPackageArchiveInfo(AppIntegrityManagerServiceImpl.java:579) 
        at com.android.server.integrity.AppIntegrityManagerServiceImpl.handleIntegrityVerification(AppIntegrityManagerServiceImpl.java:297) 
        at com.android.server.integrity.AppIntegrityManagerServiceImpl.access$100(AppIntegrityManagerServiceImpl.java:97) 
        at com.android.server.integrity.AppIntegrityManagerServiceImpl$1.lambda$onReceive$0$AppIntegrityManagerServiceImpl$1(AppIntegrityManagerServiceImpl.java:180) 
        at com.android.server.integrity.-$$Lambda$AppIntegrityManagerServiceImpl$1$AQicMJqZVSufBnAD8HJ81gPtf7Y.run(UnkNown Source:4) 
        at android.os.Handler.handleCallback(Handler.java:938) 
        at android.os.Handler.dispatchMessage(Handler.java:99) 
        at android.os.Looper.loop(Looper.java:223) 
        at android.os.HandlerThread.run(HandlerThread.java:67) 
2021-02-21 17:25:48.093 494-596/? W/AppIntegrityManagerServiceImpl: Cannot parse package ai.fedml.android
2021-02-21 17:25:48.094 494-544/? I/PackageManager: Integrity check passed for file:///data/app/vmdl1167639721.tmp
2021-02-21 17:25:48.098 13256-13256/? E/Finsky: [2] VerifyPerSourceInstallationConsentInstallTask.f(2): Package name null is not an installed package
2021-02-21 17:25:48.114 13256-15183/? I/Finsky: [1111] aouw.a(7): Single user settings service is not running,bind it Now
2021-02-21 17:25:48.120 494-514/? E/JobScheduler.Background: App com.google.android.gms became active but still in NEVER bucket
2021-02-21 17:25:48.123 494-526/? I/DropBoxManagerService: add tag=system_server_wtf isTagEnabled=true flags=0x2
2021-02-21 17:25:48.124 13256-13256/? I/Finsky: [2] aouv.onServiceConnected(1): Single user settings service is connected
2021-02-21 17:25:48.134 13256-15183/? W/Settings: Setting install_non_market_apps has moved from android.provider.Settings.Global to android.provider.Settings.Secure,returning read-only value.
2021-02-21 17:25:48.146 13256-15183/? I/Finsky: [1111] VerifyAppsInstallTask.Z(5): Verify: Cannot read archive for file:///data/app/vmdl1167639721.tmp in request id=18,package=ai.fedml.android
2021-02-21 17:25:48.169 13256-15183/? I/Finsky: [1111] VerifyMissingSplitsInstallTask.mW(7): Could not tell if Splits is installed due to null packageInfo for id=18. Assuming not.
2021-02-21 17:25:48.169 13256-15183/? I/Finsky: [1111] VerifyMissingSplitsInstallTask.d(1): Assuming split not required due to null packageInfo for id=18
2021-02-21 17:25:48.170 13256-15183/? I/Finsky: [1111] VerifyPerSourceInstallationConsentInstallTask.mW(2): PSIC verification started with installer uid: 2000 package name: null,originating uid: -1
2021-02-21 17:25:48.173 13256-13256/? I/Finsky: [2] VerifyInstallTask.g(3): Verifying id=18,result=1
2021-02-21 17:25:48.175 13256-13256/? I/Finsky: [2] VerifyInstallTask.mU(6): Verification complete: id=18,package_name=ai.fedml.android
2021-02-21 17:25:48.185 494-544/? W/PackageManager: Failed parse during installPackageLI: Failed to read manifest from /data/app/vmdl1167639721.tmp/base.apk: android.content.pm.parsing.component.ParsedService cannot be cast to java.lang.String
2021-02-21 17:25:48.187 400-1293/? E/installd: Couldn''t opendir /data/app/vmdl1167639721.tmp: No such file or directory
2021-02-21 17:25:48.187 400-1293/? E/installd: Failed to delete /data/app/vmdl1167639721.tmp: No such file or directory
2021-02-21 17:25:48.191 15178-15181/? I/cmd: oneway function results will be dropped but finished with status OK and parcel size 4
2021-02-21 17:25:48.263 494-3053/? W/ActivityManager: Invalid packageName: ai.fedml.android
2021-02-21 17:25:50.077 494-526/? W/broadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBox_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.stats.service.DropBoxEntryAddedReceiver
2021-02-21 17:25:50.077 494-526/? W/broadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBox_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver
2021-02-21 17:25:50.197 10955-10966/? I/.gms.persisten: Background young concurrent copying GC freed 114541(5966KB) AllocSpace objects,41(2956KB) LOS objects,45% free,10MB/18MB,paused 991us total 109.268ms
2021-02-21 17:25:50.197 10955-10966/? W/.gms.persisten: Reducing the number of considered missed Gc histogram windows from 133 to 100

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="ai.fedml.android">
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
    <uses-permission android:name="android.permission.SYstem_ALERT_WINDOW" />
    <uses-permission android:name="android.permission.RECORD_AUdio" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
    <uses-permission android:name="android.permission.CALL_PHONE" />
    <uses-permission android:name="android.permission.broADCAST_STICKY" />
    <uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
    <uses-permission android:name="android.permission.READ_SMS"/>
    <uses-permission android:name="android.permission.RECEIVE_USER_PRESENT" />
    <uses-permission android:name="android.permission.BLUetoOTH"/>
    <uses-permission android:name="android.permission.BLUetoOTH_ADMIN"/>
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:largeHeap="true"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

今天的关于PHPExcel_Style_Fill无限递归php递归无限分类的分享已经结束,谢谢您的关注,如果想了解更多关于30 个 PHP 的 Excel 处理类,phpexcel_PHP教程、android-adb-[INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION]、Excel无限列怎么删除 Excel无限列删除不了问题解析、INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION的相关知识,请在本站进行查询。

本文标签: