Class HttpUtil
- java.lang.Object
-
- com.google.android.exoplayer2.upstream.HttpUtil
-
@Deprecated public final class HttpUtil extends Object
Deprecated.com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.Utility methods for HTTP.
-
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static String
buildRangeRequestHeader(long position, long length)
Deprecated.Builds aRange header
for the given position and length.static long
getContentLength(String contentLengthHeader, String contentRangeHeader)
Deprecated.Attempts to parse the length of a response body from the corresponding response headers.static long
getDocumentSize(String contentRangeHeader)
Deprecated.Attempts to parse the document size from aContent-Range header
.
-
-
-
Method Detail
-
buildRangeRequestHeader
@Nullable public static String buildRangeRequestHeader(long position, long length)
Deprecated.Builds aRange header
for the given position and length.- Parameters:
position
- The request position.length
- The request length, orC.LENGTH_UNSET
if the request is unbounded.- Returns:
- The corresponding range header, or
null
if a header is unnecessary because the whole resource is being requested.
-
getDocumentSize
public static long getDocumentSize(@Nullable String contentRangeHeader)
Deprecated.Attempts to parse the document size from aContent-Range header
.- Parameters:
contentRangeHeader
- TheContent-Range header
, ornull
if not set.- Returns:
- The document size, or
C.LENGTH_UNSET
if it could not be determined.
-
getContentLength
public static long getContentLength(@Nullable String contentLengthHeader, @Nullable String contentRangeHeader)
Deprecated.Attempts to parse the length of a response body from the corresponding response headers.- Parameters:
contentLengthHeader
- TheContent-Length header
, ornull
if not set.contentRangeHeader
- TheContent-Range header
, ornull
if not set.- Returns:
- The length of the response body, or
C.LENGTH_UNSET
if it could not be determined.
-
-