app/src/com/hanju/video/app/ui/video/parser/VideoPlayUrlParseFragment.java
@@ -83,6 +83,17 @@ public void onReceiveValue(String value) { if (StringUtils.isNullOrEmpty(value)) return; if (value.contains("url=")) { String ps = value.split("\\?")[1]; String[] sts = ps.split("&"); for (String st : sts) { if (st.contains("url=")) { value = st.replace("url=", ""); break; } } } Log.i(TAG, "解析结果:" + value); if (videoParseListener != null) { videoParseListener.onSuccess(value.replace("\"", ""));