gpt4 book ai didi

java - Webview 卡在加载网站或 cloudfare 检查

转载 作者:太空狗 更新时间:2023-10-29 13:45:10 25 4
gpt4 key购买 nike

您好,我正在尝试做一个简单的 webview 应用程序,这样我就有了一个专门用于网站的“应用程序”。启用了 Javascript,并且大多数网站都可以正常加载,除了像 animeflv.net 或 floatplane.com 这样的带有预网络检查的网站。在Android 8.0.0上运行代码

这是我的代码:

主 Activity .java

package com.example.floatplane;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Window;
import android.view.WindowManager;
import android.webkit.WebView;
import android.net.http.*;
import android.webkit.WebViewClient;


public class MainActivity extends AppCompatActivity {

private WebView myWebView;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.activity_main);



String url = "https://floatplane.com/";
myWebView = (WebView) this.findViewById(R.id.fpWebView);

myWebView.getSettings().setJavaScriptEnabled(true);
myWebView.setWebViewClient(new WebViewClient());
myWebView.loadUrl(url);
}

@Override
public void onBackPressed(){
if(myWebView.canGoBack()){
myWebView.goBack();
}
else
{
super.onBackPressed();
}

}


}

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.floatplane">

<uses-permission android:name="android.permission.INTERNET"/>


<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
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>

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<WebView
android:id="@+id/fpWebView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.constraint.ConstraintLayout>

任何有关如何强制加载页面或跳过任何检查的想法都将不胜感激。

最佳答案

String userAgent = System.getProperty( "http.agent" );
Log.e("User agent",userAgent);
myWebView.setWebViewClient(new WebViewClient());
myWebView.getSettings().setUserAgentString(userAgent);
myWebView.getSettings().setJavaScriptEnabled(true);
myWebView.getSettings().setAppCacheEnabled(true);
myWebView.getSettings().setDomStorageEnabled(true);
myWebView.loadUrl(url);

你能试试这个解决方案吗?在我的模拟器中使用 android 版本 28。

关于java - Webview 卡在加载网站或 cloudfare 检查,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55449044/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com