In Java, iterative constructs allow for the repetition of code based on certain conditions. The section covers the for loop, which is ideal for a known number of iterations; the while loop, which tests conditions prior to execution; and the do-while loop, which ensures at least one execution, regardless of condition.